2011-06-16 13:51:49 +00:00
|
|
|
module Jasmine
|
|
|
|
module Headless
|
|
|
|
class NoRunnerError < StandardError
|
2011-06-19 19:08:18 +00:00
|
|
|
def message
|
|
|
|
"The jasmine-headless-webkit specrunner (jasmine-webkit-specrunner) could not be found! Try reinstalling the gem."
|
|
|
|
end
|
2011-06-16 13:51:49 +00:00
|
|
|
end
|
2011-06-28 15:24:11 +00:00
|
|
|
|
|
|
|
class TestFailure < StandardError; end
|
|
|
|
class ConsoleLogUsage < StandardError ; end
|
2011-08-10 17:11:05 +00:00
|
|
|
|
|
|
|
class JasmineConfigNotFound < Errno::ENOENT ; end
|
2011-09-06 20:01:10 +00:00
|
|
|
class InvalidReport < StandardError ; end
|
2011-06-16 13:51:49 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|