Sha256: 8358939000a8db3ea34ceefe7081b71304427e0b36134ad25e449743a50d7d97
Contents?: true
Size: 450 Bytes
Versions: 2
Compression:
Stored size: 450 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Relation::Variable::Materialized, '#delete' do subject { object.delete(other) } let(:object) { described_class.new(relation) } let(:relation) { Relation.new(header, [[1]]) } let(:other) { [[1]] } let(:header) { [[:id, Integer]] } it { should be_instance_of(described_class) } it { should be_materialized } it { should be_empty } end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
axiom-0.2.0 | spec/unit/axiom/relation/variable/materialized/delete_spec.rb |
axiom-0.1.1 | spec/unit/axiom/relation/variable/materialized/delete_spec.rb |