Sha256: 0c9eeaade49a05f4a3c4c2e7444bbcbb19ee8d9623e3209be312ed69fcd349b3

Contents?: true

Size: 784 Bytes

Versions: 21

Compression:

Stored size: 784 Bytes

Contents

Feature: --configure option

  Use the --configure option on the command line to generate configuration
  files.

  The only supported argument, so far, is "autotest", which creates a .rspec
  file in your project root directory. When autotest sees this file, it knows
  to load RSpec's Autotest subclass.

  Scenario: generate .rspec file for autotest
    When I run `rspec --configure autotest`
    Then the following files should exist:
      | .rspec |
    And the output should contain ".rspec file did not exist, so it was created."

  Scenario: .rspec file already exists
    Given a file named ".rspec" with:
      """
      --color
      """
    When I run `rspec --configure autotest`
    Then the output should contain ".rspec file already exists, so nothing was changed."

Version data entries

21 entries across 21 versions & 3 rubygems

Version Path
horseman-0.0.4 vendor/ruby/1.9.1/gems/rspec-core-2.7.1/features/command_line/configure.feature
horseman-0.0.3 vendor/ruby/1.9.1/gems/rspec-core-2.7.1/features/command_line/configure.feature
horseman-0.0.2 vendor/ruby/1.9.1/gems/rspec-core-2.7.1/features/command_line/configure.feature
nutshell-crm-0.0.6.alpha vendor/bundle/gems/rspec-core-2.7.1/features/command_line/configure.feature
nutshell-crm-0.0.5 vendor/bundle/gems/rspec-core-2.7.1/features/command_line/configure.feature
nutshell-crm-0.0.4 vendor/bundle/gems/rspec-core-2.7.1/features/command_line/configure.feature
nutshell-crm-0.0.3 vendor/bundle/gems/rspec-core-2.7.1/features/command_line/configure.feature
nutshell-crm-0.0.2 vendor/bundle/gems/rspec-core-2.7.1/features/command_line/configure.feature
nutshell-crm-0.0.1 vendor/bundle/gems/rspec-core-2.7.1/features/command_line/configure.feature
rspec-core-2.8.0.rc1 features/command_line/configure.feature
rspec-core-2.7.1 features/command_line/configure.feature
rspec-core-2.7.0 features/command_line/configure.feature
rspec-core-2.7.0.rc1 features/command_line/configure.feature
rspec-core-2.6.4 features/command_line/configure.feature
rspec-core-2.6.3 features/command_line/configure.feature
rspec-core-2.6.3.beta1 features/command_line/configure.feature
rspec-core-2.6.2.rc features/command_line/configure.feature
rspec-core-2.6.0 features/command_line/configure.feature
rspec-core-2.6.0.rc6 features/command_line/configure.feature
rspec-core-2.6.0.rc4 features/command_line/configure.feature