1 require File.join( File.dirname(__FILE__), "..", "spec_helper" )
3 describe Mart::Orders::StatusCode do
5 describe "associations" do
6 it "should have orders"
9 it "should know if it the order can be edited or not, based on
11 osc = Mart::Orders::StatusCode.new(id => 1)
12 #osc.is_editable?.should == false
13 osc2 = Mart::Orders::StatusCode.new(id => 6)
14 #osc2.is_editable?.should == true