forked from cucumber/aruba
-
Notifications
You must be signed in to change notification settings - Fork 2
/
stderr.feature
46 lines (40 loc) · 1.29 KB
/
stderr.feature
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Feature: Access STDERR of command
You may need to `#stop_all_commands` before accessing `#stderr` of a single
command - e.g. `#last_command_started`.
Background:
Given I use a fixture named "cli-app"
And the default aruba io wait timeout is 1 seconds
Scenario: Existing executable
Given an executable named "bin/aruba-test-cli" with:
"""bash
#!/bin/bash
echo 'Hello, Aruba!' >&2
"""
And a file named "spec/run_spec.rb" with:
"""ruby
require 'spec_helper'
RSpec.describe 'Run command', :type => :aruba do
before(:each) { run('cli') }
before(:each) { stop_all_commands }
it { expect(last_command_started.stderr).to start_with 'Hello' }
end
"""
When I run `rspec`
Then the specs should all pass
Scenario: Waiting for output to "appear" after 2 seconds
Given an executable named "bin/aruba-test-cli" with:
"""bash
#!/bin/bash
sleep 1
echo 'Hello, Aruba' >&2
"""
And a file named "spec/run_spec.rb" with:
"""ruby
require 'spec_helper'
RSpec.describe 'Run command', :type => :aruba, :io_wait_timeout => 2 do
before(:each) { run('cli') }
it { expect(last_command_started.stderr).to start_with 'Hello' }
end
"""
When I run `rspec`
Then the specs should all pass