Remove cucumber monkey patch translating steps:

It was initially added to allow reuse of aruba cucumber steps, using
`must' instead of `should'. This is creating more harm than good, hence
we remove it and implements all missing steps, using aruba API.
This commit is contained in:
Thibault Jouan
2014-04-23 22:34:29 +00:00
parent 974e0aca73
commit 9323391161
7 changed files with 41 additions and 33 deletions

View File

@@ -1,6 +1,6 @@
# FIXME: current home directory shouldn't be changed here, maybe we should use
# a tag for features needing a fake home directory.
Given(/^an SSH config with:$/) do |config|
ENV['HOME'] = File.expand_path current_dir
Given /^an SSH config with:$/ do |config|
ENV['HOME'] = File.expand_path(current_dir)
write_file '.ssh/config', config
end