spec/unit/axiom/relation/operation/deletion/initialize_spec.rb in axiom-0.1.0 vs spec/unit/axiom/relation/operation/deletion/initialize_spec.rb in axiom-0.1.1
- old
+ new
@@ -3,11 +3,11 @@
require 'spec_helper'
describe Relation::Operation::Deletion, '#initialize' do
subject { described_class.new(base, other) }
- let(:base) { Relation.new([ [ :id, Integer ] ], [ [ 1 ] ]) }
- let(:other) { Relation.new([ [ :id, Integer ] ], [ [ 1 ] ]) }
+ let(:base) { Relation.new([[:id, Integer]], [[1]]) }
+ let(:other) { Relation.new([[:id, Integer]], [[1]]) }
it { should be_instance_of(described_class) }
its(:left) { should be(base) }