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 end
group :a do group :a do
guard 'test', :x => 1, :y => 2, :z => 3 do guard 'test', :x => 1 do
watch('c') watch('c')
end end
end end
@ -59,7 +59,7 @@ Using inline Guardfile.
(global): (global):
test: a => :b test: a => :b
Group a: Group a:
test: x => 1, y => 2, z => 3 test: x => 1
Group b: Group b:
another another