spec/unit/veritas/relation/each_spec.rb in veritas-0.0.6 vs spec/unit/veritas/relation/each_spec.rb in veritas-0.0.7
- old
+ new
@@ -26,10 +26,10 @@
describe Relation do
subject { object.new(header, body) }
let(:header) { [ [ :id, Integer ] ] }
let(:body) { [ [ 1 ] ].each }
- let(:object) { Relation }
+ let(:object) { described_class }
before do
subject.should be_instance_of(object)
end