Sha256: 6caac6eca9cf64cb133d992882ee8a3e01dd7c2c36a9da2a8e87fa5efb8850ac

Contents?: true

Size: 380 Bytes

Versions: 5

Compression:

Stored size: 380 Bytes

Contents

Given /a project named (.*)/ do |project_name|
  @project = project_name
end

When /the databasion create command is ran/ do
  system 'bin/databasion -c %s' % @project
end

Then /a project folder and config file should exist/ do
  File.exists?('%s' % @project).should == true
  File.exists?('%s/config/google.yml' % @project).should == true
  FileUtils.rm_rf '%s/' % @project
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
databasion-0.2.3 features/step_definitions/create_project_steps.rb
databasion-0.2.2 features/step_definitions/create_project_steps.rb
databasion-0.2.1 features/step_definitions/create_project_steps.rb
databasion-0.2.0 features/step_definitions/create_project_steps.rb
databasion-0.1.1 features/step_definitions/create_project_steps.rb