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