thoughtbot--factory_bot/features/step_definitions/factory_girl_steps.rb

26 lines
978 B
Ruby
Raw Normal View History

When /^"([^"]*)" is added to Factory Girl's file definitions path$/ do |file_name|
new_factory_file = File.join(current_dir, file_name.gsub(".rb", ""))
FactoryGirl.definition_file_paths ||= []
FactoryGirl.definition_file_paths << new_factory_file
FactoryGirl.find_definitions
end
When /^"([^"]*)" is added to Factory Girl's file definitions path as an absolute path$/ do |file_name|
new_factory_file = File.expand_path(File.join(current_dir, file_name.gsub(".rb", "")))
FactoryGirl.definition_file_paths ||= []
FactoryGirl.definition_file_paths << new_factory_file
FactoryGirl.find_definitions
end
When /^I create a "([^"]*)" instance from Factory Girl$/ do |factory_name|
FactoryGirl.create(factory_name)
end
Given /^these super users exist:$/ do |table|
headers = table.headers + ["admin"]
rows = table.rows.map { |row| row + [true] }
new_table = Cucumber::Ast::Table.new([headers] + rows)
Given %{the following person exists:}, new_table
end