changelog shortlog tags changeset manifest revisions annotate raw

spec/models/product_spec.rb

changeset 18: b97ed3573af2
author: moriq <moriq@moriq.com>
date: Mon Mar 10 10:39:23 2008 +0900 (16 years ago)
permissions: -rw-r--r--
description: generate rspec_scaffold product.
1require File.dirname(__FILE__) + '/../spec_helper'
2
3describe Product do
4 before(:each) do
5 @product = Product.new
6 end
7
8 it "should be valid" do
9 @product.should be_valid
10 end
11end