Sha256: 1770e2d5ee80bcea90569ea3552feab8b946baf29875af6cea83fdde4861def8
Contents?: true
Size: 384 Bytes
Versions: 3
Compression:
Stored size: 384 Bytes
Contents
require 'spec_helper' module Alf::Shell::Operator describe Intersect do let(:left) { suppliers } let(:right){ suppliers } subject{ Intersect.run(argv) } context "the default config" do let(:argv){ [left, right] } specify{ subject.should be_a(Alf::Algebra::Intersect) subject.operands.should eq([left, right]) } end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
alf-shell-0.14.0 | spec/unit/operator/test_intersect.rb |
alf-shell-0.13.1 | spec/unit/operator/test_intersect.rb |
alf-shell-0.13.0 | spec/unit/operator/test_intersect.rb |