Updated path references to spec_helper
[merb_mart.git] / spec / models / mart / store / variation_spec.rb
blobddce0efd9f11257454e85d9963007aed7c96aaea
1 require File.join( File.dirname(__FILE__), "..", "..", "..", "spec_helper" )
3 describe Mart::Store::Variation do
5   before(:each) do
6     @variation = Mart::Store::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