# # %%HEADER%% # Given /^a fresh database named "([^"]*)"$/ do |database| FileUtils.rm(database) if File.exists?(database) end Given /^a nomads config with:$/ do |string| pending # express the regexp above with the code you wish you had end Given /^a migration file named "([^"]*)"$/ do |arg1| pending # express the regexp above with the code you wish you had end Then /^the exit code should be (\d+)$/ do |arg1| pending # express the regexp above with the code you wish you had end