changelog shortlog tags changeset file revisions annotate raw

spec/models/product_spec.rb

revision 18: b97ed3573af2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/spec/models/product_spec.rb	Mon Mar 10 10:39:23 2008 +0900
@@ -0,0 +1,11 @@
+require File.dirname(__FILE__) + '/../spec_helper'
+
+describe Product do
+  before(:each) do
+    @product = Product.new
+  end
+
+  it "should be valid" do
+    @product.should be_valid
+  end
+end