2011-06-10 14:04:21 +00:00
|
|
|
RSpec.configure do |c|
|
|
|
|
c.mock_with :mocha
|
|
|
|
end
|
|
|
|
|
2011-04-14 00:21:23 +00:00
|
|
|
specrunner = 'ext/jasmine-webkit-specrunner/jasmine-webkit-specrunner'
|
|
|
|
|
|
|
|
if !File.file?(specrunner)
|
|
|
|
Dir.chdir File.split(specrunner).first do
|
|
|
|
system %{ruby extconf.rb}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-06-16 13:51:49 +00:00
|
|
|
RSpec::Matchers.define :be_a_report_containing do |total, fails, used_console|
|
|
|
|
match do |filename|
|
|
|
|
parts = File.read(filename).strip.split('/')
|
|
|
|
parts.length.should == 4
|
|
|
|
parts[0].should == total.to_s
|
|
|
|
parts[1].should == fails.to_s
|
|
|
|
parts[2].should == (used_console ? "T" : "F")
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|