Sha256: 913a4c5b68fb693c3707d767c17cae8f5da7d811a6c8e354e9c126a005db095e

Contents?: true

Size: 715 Bytes

Versions: 3

Compression:

Stored size: 715 Bytes

Contents

Then /^the doubles directory should not exist$/ do
  @doubles_dir.should be_nil
end

Then /^the path should include (\d+) doubles directory$/ do |count|
  ENV['PATH'].split(File::PATH_SEPARATOR).count(@doubles_dir).should eql(count.to_i)
end

When /^I keep the doubles directory in mind$/ do
  @@previous_doubles_dir = @doubles_dir
end

Then /^the previous doubles directory should not exist$/ do
  File.should_not be_exist(@@previous_doubles_dir)
end

Then /^the previous doubles directory should exist$/ do
  File.should be_exist(@@previous_doubles_dir)
end

Then /^the (stdout|stderr) should be empty$/ do |stdout_stderr|
  steps %Q{
    Then the #{stdout_stderr} should contain exactly:
			"""
			"""
  }
end


Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
aruba-doubles-0.2.3 features/step_definitions/dev_steps.rb
aruba-doubles-0.2.2 features/step_definitions/dev_steps.rb
aruba-doubles-0.2.1 features/step_definitions/dev_steps.rb