Updated path references to spec_helper
[merb_mart.git] / spec / models / mart / orders / status_code_spec.rb
blob7551754bcf5ed1d3199a41ba65534d52c9ebd895
1 require File.join( File.dirname(__FILE__), "..", "..", "..", "spec_helper" )
3 describe Mart::Orders::StatusCode do
5   describe "associations" do
6     it "should have orders"
7   end
8   
9   it "should know if it the order can be edited or not, based on 
10   status code" do
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
15   end
17 end