changelog shortlog tags changeset manifest revisions annotate raw

vendor/plugins/rspec_on_rails/stories/steps/people.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
1steps_for :people do
2 When "I add a Person" do
3 Person.create!(:name => "Foo")
4 end
5 Then "there should be one person" do
6 Person.count.should == 1
7 end
8end