Sha256: 8dfd413af92273470e29b7dd787780c1a41e59ecdbb39ccfdee45697573e1f64

Contents?: true

Size: 1.26 KB

Versions: 8

Compression:

Stored size: 1.26 KB

Contents

Feature: Trema::Controller#logger.fatal
  Background:
    Given a file named "hello.rb" with:
      """ruby
      class Hello < Trema::Controller
        def start(_args)
          logger.fatal 'Konnichi Wa'
        end
      end
      """

  @sudo
  Scenario: the default logging level
    When I trema run "hello.rb" interactively
    And I trema killall "Hello"
    Then the output should contain "Konnichi Wa"
    And the file "Hello.log" should contain "FATAL -- : Konnichi Wa"

  @sudo
  Scenario: --logging_level fatal
    When I run `trema run hello.rb --logging_level fatal` interactively
    And I run `sleep 3`
    And I trema killall "Hello"
    Then the output should contain "Konnichi Wa"
    And the file "Hello.log" should contain "FATAL -- : Konnichi Wa"

  @sudo
  Scenario: -v
    When I run `trema -v run hello.rb` interactively
    And I run `sleep 3`
    And I trema killall "Hello"
    Then the output should contain "Konnichi Wa"
    And the file "Hello.log" should contain "FATAL -- : Konnichi Wa"

  @sudo
  Scenario: --verbose
    When I run `trema --verbose run hello.rb` interactively
    And I run `sleep 3`
    And I trema killall "Hello"
    Then the output should contain "Konnichi Wa"
    And the file "Hello.log" should contain "FATAL -- : Konnichi Wa"

Version data entries

8 entries across 8 versions & 1 rubygems

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