Whitespace cleanup
[merb_mart.git] / spec / models / shipping / weight_spec.rb
blobcc2531f66d449bf88b31feb6cf6ce92b57952f47
1 require File.join( File.dirname(__FILE__), "..", "..", "..", "spec_helper" )
3 describe Mart::Shipping::Weight do
5   describe "associations" do
6     it "should belong to a shipping type" do
7       weight = Mart::Shipping::Weight.new
8       weight.should respond_to(:type)
9     end
10   end
12   it "should have a min weight"
13   it "should have a max weight"
14   it "should have a price"
16 end