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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
Feature: Initialize project with aruba
To add `aruba` to your project you can use the `aruba init`-command.
Background:
Given I use the fixture "empty-app"
Scenario: Create files for RSpec
When I successfully run `aruba init --test-framework rspec`
Then the following files should exist:
| spec/spec_helper.rb |
And the file "spec/support/aruba.rb" should contain:
"""
require 'aruba/rspec'
"""
And the file "Gemfile" should contain:
"""
gem 'aruba'
"""
When I successfully run `rspec`
Then the output should contain:
"""
0 examples, 0 failures
"""
Scenario: Create files for Cucumber
When I successfully run `aruba init --test-framework cucumber`
Then the file "features/support/aruba.rb" should contain:
"""
require 'aruba/cucumber'
"""
And the file "Gemfile" should contain:
"""
gem 'aruba'
"""
When I successfully run `cucumber`
Then the output should contain:
"""
0 scenarios
0 steps
"""
Scenario: Create files for Cucumber (Default)
When I successfully run `aruba init`
Then the file "features/support/aruba.rb" should contain:
"""
require 'aruba/cucumber'
"""
And the file "Gemfile" should contain:
"""
gem 'aruba'
"""
When I successfully run `cucumber`
Then the output should contain:
"""
0 scenarios
0 steps
"""
Scenario: Create files for Minitest
When I successfully run `aruba init --test-framework minitest`
Then the following files should exist:
| test/test_helper.rb |
And the file "Gemfile" should contain:
"""
gem 'aruba'
"""
When I successfully run `ruby -Ilib:test test/use_aruba_with_minitest.rb`
Then the output should contain:
"""
0 runs, 0 assertions, 0 failures, 0 errors, 0 skips
"""
Scenario: Unknown Test Framework
When I run `aruba init --test-framework unknown`
Then the output should contain:
"""
got unknown
"""
|