Sha256: bfe08039e65e3a50b1dcdffbdd1e02fc32b55ecfc72ba1f5a7d2883458f58a0a

Contents?: true

Size: 647 Bytes

Versions: 4

Compression:

Stored size: 647 Bytes

Contents

Given /^I have '(.*) (.*)'$/ do |name, version|
  GemManager.installed?(name, version)
end

Given /^I do not have '(.*) (.*)'$/ do |name, version|
  if GemManager.installed?(name, version)
    GemManager.uninstall(name, version)
  end
end

When /^I install '(.*) (.*)'$/ do |name, version|
  pending
end

Then /^I should (?:still )?have '(.*) (.*)'$/ do |name, version|
  GemManager.installed?(name, version).should be_true
end

Then /^I should not have '(.*) (.*)'$/ do |name, version|
  GemManager.installed?(name, version).should be_false
end

Then /^data files of 'hello 0\.2\.0' is same as data files of 'hello 0\.1\.0'$/ do
    pending
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ruby-station-0.1.3 tests/features/step_definitions/application_steps.rb
ruby-station-0.1.2 tests/features/step_definitions/application_steps.rb
ruby-station-0.1.1 tests/features/step_definitions/application_steps.rb
ruby-station-0.1.0 tests/features/step_definitions/application_steps.rb