Sha256: 092dc854c59dfc6ade1640be0cbb2c1b57567fb5e916dd786d3031f8390d9767
Contents?: true
Size: 487 Bytes
Versions: 4
Compression:
Stored size: 487 Bytes
Contents
require 'spec_helper' module Alf module Algebra describe Minus, 'heading' do let(:left){ an_operand.with_heading(:id => Fixnum, :name => String) } let(:right){ an_operand.with_heading(:id => Integer, :name => String) } let(:op){ a_lispy.minus(left, right) } subject{ op.heading } let(:expected){ Heading[:id => Fixnum, :name => String] } it { should eq(expected) } end end end
Version data entries
4 entries across 4 versions & 1 rubygems