mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-21 09:40:13 +01:00
8 lines
166 B
Ruby
8 lines
166 B
Ruby
|
|
steps_for :people do
|
||
|
|
When "I add a Person" do
|
||
|
|
Person.create!(:name => "Foo")
|
||
|
|
end
|
||
|
|
Then "there should be one person" do
|
||
|
|
Person.count.should == 1
|
||
|
|
end
|
||
|
|
end
|