Merge pull request #73 from johnbintz/symbols-for-group-names
Allow symbols for group names
This commit is contained in:
commit
53adfc9e94
@ -90,7 +90,7 @@ module Guard
|
|||||||
end
|
end
|
||||||
|
|
||||||
def group(name, &guard_definition)
|
def group(name, &guard_definition)
|
||||||
guard_definition.call if guard_definition && (@@options[:group].empty? || @@options[:group].include?(name))
|
guard_definition.call if guard_definition && (@@options[:group].empty? || @@options[:group].include?(name.to_s))
|
||||||
end
|
end
|
||||||
|
|
||||||
def guard(name, options = {}, &watch_definition)
|
def guard(name, options = {}, &watch_definition)
|
||||||
|
@ -186,7 +186,11 @@ describe Guard::Dsl do
|
|||||||
end
|
end
|
||||||
|
|
||||||
describe "#group" do
|
describe "#group" do
|
||||||
it "should evaluates only the specified group" do
|
it "should evaluates only the specified string group" do
|
||||||
|
::Guard.should_receive(:add_guard).with('test', anything, {})
|
||||||
|
lambda { subject.evaluate_guardfile(:guardfile_contents => valid_guardfile_string, :group => ['w']) }.should_not raise_error
|
||||||
|
end
|
||||||
|
it "should evaluates only the specified symbol group" do
|
||||||
::Guard.should_receive(:add_guard).with('test', anything, {})
|
::Guard.should_receive(:add_guard).with('test', anything, {})
|
||||||
lambda { subject.evaluate_guardfile(:guardfile_contents => valid_guardfile_string, :group => ['x']) }.should_not raise_error
|
lambda { subject.evaluate_guardfile(:guardfile_contents => valid_guardfile_string, :group => ['x']) }.should_not raise_error
|
||||||
end
|
end
|
||||||
@ -251,7 +255,13 @@ private
|
|||||||
end
|
end
|
||||||
|
|
||||||
def valid_guardfile_string
|
def valid_guardfile_string
|
||||||
"group 'x' do
|
"group 'w' do
|
||||||
|
guard 'test' do
|
||||||
|
watch('c')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
group :x do
|
||||||
guard 'test' do
|
guard 'test' do
|
||||||
watch('c')
|
watch('c')
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user