Sha256: e20227538bef8ebdcc6211e7ab8984df95b220c401b7685df58d331f50c5724e

Contents?: true

Size: 535 Bytes

Versions: 3

Compression:

Stored size: 535 Bytes

Contents

describe BunnyMock do

	context '::new' do

		it 'should return a new session' do

			expect(BunnyMock.new.class).to eq(BunnyMock::Session)
		end
	end

	context '::version' do

		it 'should return the current version' do

			expect(BunnyMock::VERSION).to_not be_nil
			expect(BunnyMock.version).to_not be_nil
		end
	end

	context '::protocol_version' do

		it 'should return the current amq protocol version' do

			expect(BunnyMock::PROTOCOL_VERSION).to eq('0.9.1')
			expect(BunnyMock.protocol_version).to eq('0.9.1')
		end
	end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bunny-mock-1.2.0 spec/unit/bunny_mock_spec.rb
bunny-mock-1.1.0 spec/unit/bunny_mock_spec.rb
bunny-mock-1.0.0 spec/unit/bunny_mock_spec.rb