Sha256: f6d3531773c4c338e8264ad5929758ef2afdc765659b74a520fa80ba7981e8b6

Contents?: true

Size: 371 Bytes

Versions: 6

Compression:

Stored size: 371 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')

include Fathom

describe Decision do
  it "should be a type of node" do
    Decision.ancestors.should be_include(Node)
  end
  
  it "should not have a distribution or values" do
    @d = Decision.new
    @d.should_not be_respond_to(:distribution)
    @d.should_not be_respond_to(:values)
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fathom-0.3.7 spec/fathom/node/decision_spec.rb
fathom-0.3.6 spec/fathom/node/decision_spec.rb
fathom-0.3.4 spec/fathom/node/decision_spec.rb
fathom-0.3.3 spec/fathom/node/decision_spec.rb
fathom-0.3.2 spec/fathom/node/decision_spec.rb
fathom-0.3.1 spec/fathom/node/decision_spec.rb