Skip to content

Commit

Permalink
Merge pull request #657 from cucumber/fix-up-jruby
Browse files Browse the repository at this point in the history
Fix up JRuby build
  • Loading branch information
mvz authored Jul 12, 2019
2 parents 75422eb + d3d606a commit 0d7838f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Feature: Debug your command in cucumber-test-run
Given I use a fixture named "cli-app"
And the default aruba exit timeout is 60 seconds

@requires-readline
@unsupported-on-platform-java
Scenario: You can use a debug repl in your cli program

If you want to debug an error, which only occurs in one of your
Expand Down
3 changes: 0 additions & 3 deletions features/06_use_aruba_cli/open_console.feature
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ Feature: Aruba Console
aruba:001:0>
"""

@unsupported-on-platform-java
Scenario: Show help
Given I run `aruba console` interactively
And I type "aruba_help"
Expand All @@ -29,7 +28,6 @@ Feature: Aruba Console
Documentation:
"""

@unsupported-on-platform-java
Scenario: Show methods
Given I run `aruba console` interactively
And I type "aruba_methods"
Expand All @@ -43,7 +41,6 @@ Feature: Aruba Console
* setup_aruba
"""

@unsupported-on-platform-java
Scenario: Has history
Given I run `aruba console` interactively
And I type "aruba_methods"
Expand Down
3 changes: 1 addition & 2 deletions lib/aruba/cucumber/command.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
end

When(/^I run `([^`]*)` interactively$/) do |cmd|
cmd = sanitize_text(cmd)
@interactive = run_command(cmd)
run_command(sanitize_text(cmd))
end

# Merge interactive and background after refactoring with event queue
Expand Down

0 comments on commit 0d7838f

Please sign in to comment.