forked from cucumber/aruba
-
Notifications
You must be signed in to change notification settings - Fork 2
/
run-test-suite.feature
50 lines (37 loc) · 1.16 KB
/
run-test-suite.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
47
48
49
50
Feature: Run test suite
As a aruba developer
I want to run the test suite of the `aruba` gem
In order to check my changed code
Scenario: Run unit tests with `rspec`
When I successfully run `rake -T test:rspec`
Then the output should contain:
"""
rake test:rspec
"""
Scenario: Run acceptance tests with `cucumber`
This task is for fully implemented features.
When I successfully run `rake -T test:cucumber`
Then the output should contain:
"""
rake test:cucumber
"""
Scenario: Run acceptance tests with `cucumber` for features which are under active development
This task is for running tests for features which are Work in Progress and therefore might fail the suite.
When I successfully run `rake -T test:cucumber_wip`
Then the output should contain:
"""
rake test:cucumber
"""
Scenario: Run whole test suite via rake
When I successfully run `rake -T test`
Then the output should contain:
"""
rake test
"""
@ignore
Scenario: Run whole test suite via "test"-script
When I successfully run `script/test`
Then the output should contain:
"""
rake test
"""