mirror of
https://github.com/DatabaseCleaner/database_cleaner
synced 2023-03-27 23:22:03 -04:00
initial work done. Have failing example feauture and main config module done.
This commit is contained in:
parent
00299245c8
commit
13a59fc3af
14 changed files with 189 additions and 9 deletions
8
examples/features/step_definitions/example_steps.rb
Normal file
8
examples/features/step_definitions/example_steps.rb
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
When /^I create a widget$/ do
|
||||
Widget.create!
|
||||
end
|
||||
|
||||
Then /^I should see 1 widget$/ do
|
||||
Widget.count.should == 1
|
||||
end
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue