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