spec/unit/axiom/relation/gateway/take_spec.rb in axiom-do-adapter-0.1.0 vs spec/unit/axiom/relation/gateway/take_spec.rb in axiom-do-adapter-0.2.0
- old
+ new
@@ -4,18 +4,18 @@
require 'axiom/relation/gateway'
describe Relation::Gateway, '#take' do
subject { object.take(args) }
- let(:adapter) { mock('Adapter') }
- let(:relation) { mock('Relation', :take => response) }
- let(:response) { mock('New Relation', :kind_of? => true) }
- let!(:object) { described_class.new(adapter, relation) }
- let(:args) { stub }
+ let(:adapter) { double('Adapter') }
+ let(:relation) { double('Relation', take: response) }
+ let(:response) { double('New Relation', :kind_of? => true) }
+ let!(:object) { described_class.new(adapter, relation) }
+ let(:args) { double }
it_should_behave_like 'a unary relation method'
it 'forwards the arguments to relation#take' do
- relation.should_receive(:take).with(args)
+ expect(relation).to receive(:take).with(args)
subject
end
end