spec/unit/axiom/relation/eql_spec.rb in axiom-0.1.1 vs spec/unit/axiom/relation/eql_spec.rb in axiom-0.2.0

- old
+ new

@@ -8,10 +8,10 @@ let(:header) { [[:id, Integer]] } let(:body) { LazyEnumerable.new([[1]]) } let(:object) { described_class.new(header, body) } before do - object.should be_instance_of(described_class) + expect(object).to be_instance_of(described_class) end context 'with the same object' do let(:other) { object }