Sha256: e48fefcbff18125e66a6cf67e9905e2e302beec28c7e9f3201d222245fc8615f
Contents?: true
Size: 372 Bytes
Versions: 3
Compression:
Stored size: 372 Bytes
Contents
require 'spec_helper' module Alf::Shell::Operator describe Union do let(:left) { suppliers } let(:right){ suppliers } subject{ Union.run(argv) } context "the default config" do let(:argv){ [left, right] } specify{ subject.should be_a(Alf::Algebra::Union) 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_union.rb |
alf-shell-0.13.1 | spec/unit/operator/test_union.rb |
alf-shell-0.13.0 | spec/unit/operator/test_union.rb |