2011-05-06 17:29:24 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Guard::Interactor do
|
|
|
|
subject { Guard::Interactor }
|
|
|
|
let(:guard) { mock "guard" }
|
2011-05-06 19:14:39 +00:00
|
|
|
|
2011-05-06 17:29:24 +00:00
|
|
|
before :each do
|
|
|
|
Guard.stub!(:guards).and_return([guard])
|
2011-05-06 19:14:39 +00:00
|
|
|
Guard.stub!(:options).and_return({})
|
2011-05-06 17:29:24 +00:00
|
|
|
Guard.stub!(:listener).and_return(mock(:start => nil, :stop => nil))
|
|
|
|
end
|
|
|
|
|
|
|
|
it ".run_all should send :run_all to all guards" do
|
|
|
|
guard.should_receive(:run_all)
|
|
|
|
subject.run_all
|
|
|
|
end
|
|
|
|
|
|
|
|
it ".stop should send :stop to all guards" do
|
|
|
|
guard.should_receive(:stop)
|
|
|
|
lambda { subject.stop }.should raise_error(SystemExit)
|
|
|
|
end
|
|
|
|
|
|
|
|
it ".reload should send :reload to all guards" do
|
|
|
|
guard.should_receive(:reload)
|
|
|
|
subject.reload
|
|
|
|
end
|
|
|
|
end
|