features/api/command/extract_text.feature in aruba-0.9.0.pre vs features/api/command/extract_text.feature in aruba-0.9.0.pre2

- old
+ new

@@ -16,10 +16,12 @@ """ require 'spec_helper' RSpec.describe 'Run command', :type => :aruba do before(:each) { run('cli') } + before(:each) { stop_all_commands } + it { expect(extract_text(unescape_text(last_command.output))).to eq "Text" } end """ When I run `rspec` Then the specs should all pass @@ -34,10 +36,12 @@ """ require 'spec_helper' RSpec.describe 'Run command', :type => :aruba do before(:each) { run('cli') } + before(:each) { stop_all_commands } + it { expect(extract_text(unescape_text(last_command.output))).to eq "Text" } end """ When I run `rspec` Then the specs should all pass @@ -52,10 +56,12 @@ # """ # require 'spec_helper' # # RSpec.describe 'Run command', :type => :aruba do # before(:each) { run('cli') } + # before(:each) { stop_all_commands } + # # it { expect(extract_text(unescape_text(last_command.output))).to eq "Text" } # end # """ # When I run `rspec` # Then the specs should all pass @@ -70,10 +76,12 @@ # """ # require 'spec_helper' # # RSpec.describe 'Run command', :type => :aruba do # before(:each) { run('cli') } + # before(:each) { stop_all_commands } + # # it { expect(extract_text(unescape_text(last_command.output))).to eq "Text" } # end # """ # When I run `rspec` # Then the specs should all pass @@ -88,9 +96,11 @@ # """ # require 'spec_helper' # # RSpec.describe 'Run command', :type => :aruba do # before(:each) { run('cli') } + # before(:each) { stop_all_commands } + # # it { expect(extract_text(unescape_text(last_command.output))).to eq "Text" } # end # """ # When I run `rspec` # Then the specs should all pass