Extensive Namespacing of model specs
[merb_mart.git] / spec / models / mart / customers / wishlist_item_spec.rb
blob126358b87cd3a29050a2274531c11d0b4b76756a
1 require File.join( File.dirname(__FILE__), "..", "spec_helper" )
3 describe Mart::Customers::WishlistItem do
5   before(:each) do
6     @wishlist_item = Mart::Customers::WishlistItem.new
7   end
9   describe "associations" do
10     
11     it "should belong to an order user" do
12       @wishlist_item.should be_valid
13     end
14     
15     it "should belong to an item" do
16       @wishlist_item.should be_valid
17     end
18     
19   end
20   
21   describe "properties" do
22     it "should have a created on date"
23   end
25 end