Sha256: 89447dd4f27e66b3e1884534d92a712011dd82f639928e24c71e9b7955730725

Contents?: true

Size: 372 Bytes

Versions: 1

Compression:

Stored size: 372 Bytes

Contents

require 'fileutils'
include FileUtils

Given /^the directory "([^"]*)" does not exist$/ do |dir|
  dir = File.join(ARUBA_DIR,dir)
  rm_rf dir,:verbose => false, :secure => true
end

Given /^my app's name is "([^"]*)"$/ do |app_name|
  @app_name = app_name
end

Then /^the stderr should match \/([^\/]*)\/$/ do |expected|
  assert_matching_output(expected, all_stderr)
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
methadone-0.3.0 features/step_definitions/bootstrap_steps.rb