2010-10-18 19:45:31 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Guard do
|
|
|
|
|
2010-11-03 22:31:00 +00:00
|
|
|
describe "Class Methods" do
|
2010-11-30 20:23:53 +00:00
|
|
|
describe ".setup" do
|
|
|
|
subject { ::Guard.setup }
|
2010-11-03 22:31:00 +00:00
|
|
|
|
|
|
|
it "should retrieve itself for chaining" do
|
|
|
|
subject.should be_kind_of(Module)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should init guards array" do
|
|
|
|
::Guard.guards.should be_kind_of(Array)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should init options" do
|
|
|
|
opts = { :my_opts => true }
|
2010-11-30 20:23:53 +00:00
|
|
|
::Guard.setup(opts).options.should include(:my_opts)
|
2010-11-03 22:31:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should init listener" do
|
|
|
|
::Guard.listener.should be_kind_of(Guard::Listener)
|
|
|
|
end
|
2010-10-27 13:18:00 +00:00
|
|
|
end
|
|
|
|
|
2010-11-30 20:23:53 +00:00
|
|
|
describe ".get_guard_class" do
|
|
|
|
it "should return Guard::RSpec" do
|
|
|
|
Guard.get_guard_class('rspec').should == Guard::RSpec
|
2010-11-03 22:31:00 +00:00
|
|
|
end
|
2010-10-27 13:18:00 +00:00
|
|
|
end
|
|
|
|
|
2010-11-30 20:23:53 +00:00
|
|
|
describe ".locate_guard" do
|
|
|
|
it "should return guard-rspec gem path" do
|
|
|
|
guard_path = Guard.locate_guard('rspec')
|
|
|
|
guard_path.should match(/^.*\/guard-rspec-.*$/)
|
|
|
|
guard_path.should == guard_path.chomp
|
2010-11-03 22:31:00 +00:00
|
|
|
end
|
2010-10-27 13:18:00 +00:00
|
|
|
end
|
|
|
|
|
2010-11-30 20:23:53 +00:00
|
|
|
describe ".supervised_task" do
|
|
|
|
subject { ::Guard.setup }
|
|
|
|
before(:each) do
|
|
|
|
@g = mock(Guard::Guard)
|
|
|
|
subject.guards.push(@g)
|
|
|
|
end
|
2010-11-03 22:31:00 +00:00
|
|
|
|
2010-11-30 20:23:53 +00:00
|
|
|
describe "tasks that succeed" do
|
|
|
|
before(:each) do
|
|
|
|
@g.stub!(:regular) { true }
|
|
|
|
@g.stub!(:regular_with_arg).with("given_path") { "i'm a success" }
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should not fire the guard with a supervised method without argument" do
|
|
|
|
lambda { subject.supervised_task(@g, :regular) }.should_not change(subject.guards, :size)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should not fire the guard with a supervised method with argument" do
|
|
|
|
lambda { subject.supervised_task(@g, :regular_with_arg, "given_path") }.should_not change(subject.guards, :size)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should return the result of the supervised method" do
|
|
|
|
::Guard.supervised_task(@g, :regular).should be_true
|
|
|
|
::Guard.supervised_task(@g, :regular_with_arg, "given_path").should == "i'm a success"
|
|
|
|
end
|
2010-11-03 22:31:00 +00:00
|
|
|
end
|
|
|
|
|
2010-11-30 20:23:53 +00:00
|
|
|
describe "tasks that raise an exception" do
|
|
|
|
before(:each) { @g.stub!(:failing) { raise "I break your system" } }
|
|
|
|
|
|
|
|
it "should fire the guard" do
|
|
|
|
lambda { subject.supervised_task(@g, :failing) }.should change(subject.guards, :size).by(-1)
|
|
|
|
subject.guards.should_not include(@g)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should return the exception object" do
|
|
|
|
failing_result = ::Guard.supervised_task(@g, :failing)
|
|
|
|
failing_result.should be_kind_of(Exception)
|
|
|
|
failing_result.message.should == 'I break your system'
|
|
|
|
end
|
2010-11-03 22:31:00 +00:00
|
|
|
end
|
2010-10-27 13:18:00 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-11-30 20:23:53 +00:00
|
|
|
end
|