master/spec/guard/dsl_spec.rb
Olivier Amblet dd1100b4ae Added DSL specs and improved error message.
DSL now have basics specs that confirm it works
I splitted file not found and invalid Guardfile
error message because it was confusing to know
in which case you are when it occurs :)
2010-10-30 18:26:09 +02:00

56 lines
1.5 KiB
Ruby

require 'spec_helper'
require 'guard/dsl'
describe Guard::Dsl do
subject {Guard::Dsl}
it "load a guard from the DSL" do
fixture :simple
::Guard.stub!(:add_guard)
::Guard.should_receive(:add_guard).with('test', [], {})
subject.evaluate_guardfile
end
it "write an error message when no Guardfile is found" do
fixture :no_guardfile
Guard::UI.stub!(:error)
Guard::UI.should_receive(:error).with("No Guardfile in current folder, please create one.")
lambda { subject.evaluate_guardfile }.should raise_error
end
it "write an error message when Guardfile is not valid" do
fixture :invalid_guardfile
Guard::UI.stub!(:error)
Guard::UI.should_receive(:error).with(/Invalid Guardfile, original error is:\n/)
lambda { subject.evaluate_guardfile }.should raise_error
end
it "receive watchers when specified" do
fixture :watchers
::Guard.stub!(:add_guard)
::Guard.should_receive(:add_guard).with('test', anything(), {}) do |name, watchers, options|
watchers.size.should eql 2
end
subject.evaluate_guardfile
end
it "receive options when specified" do
fixture :options
::Guard.stub!(:add_guard)
::Guard.should_receive(:add_guard).with('test', anything(), hash_including(:opt_a, :opt_b))
subject.evaluate_guardfile
end
private
def fixture name
## Hack to make guard look into the correct fixture folder
Dir.stub!(:pwd).and_return("#{@fixture_path}/dsl/#{name}")
Dir.pwd.should == "#{@fixture_path}/dsl/#{name}"
end
end