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:
@@ -1,5 +1,3 @@
|
||||
# FIXME: our monkey patch currently prevent us from using `must' in step
|
||||
# definitions.
|
||||
Then(/^the output should contain my current login name$/) do
|
||||
assert_partial_output(Etc.getlogin, all_output)
|
||||
Then /^the output must contain my current login name$/ do
|
||||
assert_partial_output Etc.getlogin, all_output
|
||||
end
|
||||
|
Reference in New Issue
Block a user