* Fixed/added specs for different account types.
[merb_mart.git] / spec / models / variation_spec.rb
blob9af0be7e826250f977fb43af52d1f2995473ef7a
1 require File.join( File.dirname(__FILE__), "..", "spec_helper" )
3 describe Variation do
5   before(:each) do
6     @variation = Variation.new
7   end
9   describe "associations" do
10     
11     it "should belong to a product" do
12       @variation.should be_valid
13     end
14     
15   end
16   
17   it "should provide images"
18   it "should provide a name"
20 end