chef-boneyard / minitest-chef-handler

Run minitest suites after your Chef recipes to check the status of your system.
Other
163 stars 44 forks source link

Group must_include fails to match members if the order is incorrect. #58

Open kailunshi opened 11 years ago

kailunshi commented 11 years ago

group("admin").must_include(['aaa', 'bbb']) is different from group("admin").must_include(['bbb', 'aaa'])

If the first one returns true, the second one will return false.