features/step_definitions/cli_steps.rb in adhearsion-2.1.3 vs features/step_definitions/cli_steps.rb in adhearsion-2.2.0

- old
+ new

@@ -20,19 +20,9 @@ When /^I wait (\d+) seconds?$/ do |arg1| sleep arg1.to_i end -# TODO: Remove after pull request is merged in cucumber.rb from Aruba -When /^I wait for (?:output|stdout) to contain "([^"]*)"$/ do |expected| - Timeout::timeout(exit_timeout) do - loop do - break if assert_partial_output_interactive(expected) - sleep 0.1 - end - end -end - Given /^that I create a valid app under "([^"]*)"$/ do |path| steps %Q{ When I run `ahn create #{path}` Then there should be a valid adhearsion directory named "#{path}" }