spec/crash_log_spec.rb in crashlog-0.0.2 vs spec/crash_log_spec.rb in crashlog-1.0.0.rc1
- old
+ new
@@ -94,10 +94,10 @@
describe '.ready' do
it 'logs an ready message' do
CrashLog::Reporter.any_instance.stub(:announce).and_return("Test Application")
logger = stub('Logger')
logger.should_receive(:info).
- with("** [CrashLog] Initialized and ready to handle exceptions for Test Application")
+ with("** [CrashLog] Configured correctly and ready to handle exceptions for 'Test Application'")
CrashLog.stub(:logger).and_return(logger)
CrashLog.report_for_duty!
end
end