changelog shortlog tags changeset manifest revisions annotate raw

vendor/plugins/rspec_on_rails/generators/rspec_model/templates/model_spec.rb

changeset 16: 01fd3f10ae84
author: moriq@moriq.com
date: Mon Mar 10 10:13:18 2008 +0900 (16 years ago)
permissions: -rw-r--r--
description: add plugins rspec_on_rails
1require File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../spec_helper'
2
3describe <%= class_name %> do
4 before(:each) do
5 @<%= file_name %> = <%= class_name %>.new
6 end
7
8 it "should be valid" do
9 @<%= file_name %>.should be_valid
10 end
11end