Sha256: 8df30eb3c1339386420ce7abd60d26555440d238dce3a3f7db29be78d9e51230
Contents?: true
Size: 1.3 KB
Versions: 14
Compression:
Stored size: 1.3 KB
Contents
require 'lite_spec_helper' describe Mongo::Error::Notable do let(:exception_cls) do # Since Notable is a module, we need a class that includes it for testing Mongo::Error end context 'when there are no notes' do let(:exception) do exception_cls.new('hello world') end describe '#message' do it 'is correct' do exception.message.should == 'hello world' end end describe '#to_s' do it 'is correct' do exception.to_s.should == 'hello world' end end describe '#inspect' do it 'is correct' do exception.inspect.should == '#<Mongo::Error: hello world>' end end end context 'when there are notes' do let(:exception) do exception_cls.new('hello world').tap do |exception| exception.add_note('brilliant') exception.add_note('weird') end end describe '#message' do it 'is correct' do exception.message.should == 'hello world (brilliant, weird)' end end describe '#to_s' do it 'is correct' do exception.to_s.should == 'hello world (brilliant, weird)' end end describe '#inspect' do it 'is correct' do exception.inspect.should == '#<Mongo::Error: hello world (brilliant, weird)>' end end end end
Version data entries
14 entries across 14 versions & 1 rubygems