mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
17 lines
504 B
Ruby
17 lines
504 B
Ruby
Then /^I should find the following for the last (.*):$/ do |model, table|
|
|
model_class = model.camelize.constantize
|
|
last_instance = model_class.last or raise "No #{model.pluralize} exist"
|
|
table.hashes.first.each do |key, value|
|
|
last_instance.attributes[key].to_s.should == value
|
|
end
|
|
end
|
|
|
|
Then /^there should be (\d+) (.*)$/ do |count, model|
|
|
model_class = model.singularize.camelize.constantize
|
|
model_class.count.should == count.to_i
|
|
end
|
|
|
|
Before do
|
|
Post.delete_all
|
|
User.delete_all
|
|
end
|