Sha256: 2e08644be24fced53d082cded3804abb565f5ffd5d1b3862ce7952bd9451f380

Contents?: true

Size: 910 Bytes

Versions: 8

Compression:

Stored size: 910 Bytes

Contents

Feature: -L (--log_dir) option

  -L (--log_dir) option specifies the location to put log files

  Background:
    Given a file named "null_controller.rb" with:
      """ruby
      class NullController < Trema::Controller; end
      """

  @sudo
  Scenario: -L option
    Given a directory named "log"
    When I successfully run `trema run null_controller.rb -L log -d`
    And I run `sleep 3`
    Then a file named "log/NullController.log" should exist

  @sudo
  Scenario: --log_dir option
    Given a directory named "log"
    When I successfully run `trema run null_controller.rb --log_dir log -d`
    And I run `sleep 3`
    Then a file named "log/NullController.log" should exist

  @sudo
  Scenario: "No such directory" error
    When I run `trema run null_controller.rb -L log -d`
    Then the exit status should not be 0
    And the stderr should contain:
      """
      No such directory
      """

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
trema-0.8.4 features/trema_run/log_dir_option.feature
trema-0.8.3 features/trema_run/log_dir_option.feature
trema-0.8.2 features/trema_run/log_dir_option.feature
trema-0.8.1 features/trema_run/log_dir_option.feature
trema-0.8.0 features/trema_run/log_dir_option.feature
trema-0.7.1 features/trema_run/log_dir_option.feature
trema-0.7.0 features/trema_run/log_dir_option.feature
trema-0.6.0 features/trema_run/log_dir_option.feature