Make spec example simpler to avoid Ruby hash ordering issue.

This commit is contained in:
Michael Kessler 2011-10-04 11:37:12 +02:00
parent a1e5723efe
commit 8b6a035dfe

View File

@ -11,7 +11,7 @@ describe Guard::DslDescriber do
end
group :a do
guard 'test', :x => 1, :y => 2, :z => 3 do
guard 'test', :x => 1 do
watch('c')
end
end
@ -59,7 +59,7 @@ Using inline Guardfile.
(global):
test: a => :b
Group a:
test: x => 1, y => 2, z => 3
test: x => 1
Group b:
another