Sha256: 5934d72dde3a5b8f9e9a3beffb9434f364082fe0483fca17d06dc4d5e4740a94
Contents?: true
Size: 1.42 KB
Versions: 3
Compression:
Stored size: 1.42 KB
Contents
Feature: Trema::Controller#logger.info Background: Given I set the environment variables to: | variable | value | | TREMA_LOG_DIR | . | | TREMA_PID_DIR | . | | TREMA_SOCKET_DIR | . | And a file named "hello.rb" with: """ruby class Hello < Trema::Controller def start(_args) logger.info 'Konnichi Wa' end end """ @sudo Scenario: the default logging level When I trema run "hello.rb" interactively And sleep 2 And I trema killall "Hello" Then the output should contain "Konnichi Wa" And the file "Hello.log" should contain "INFO -- : Konnichi Wa" @sudo Scenario: --logging_level info When I run `trema run hello.rb --logging_level info` interactively And sleep 2 And I trema killall "Hello" Then the output should contain "Konnichi Wa" And the file "Hello.log" should contain "INFO -- : Konnichi Wa" @sudo Scenario: -v When I run `trema -v run hello.rb` interactively And sleep 2 And I trema killall "Hello" Then the output should contain "Konnichi Wa" And the file "Hello.log" should contain "INFO -- : Konnichi Wa" @sudo Scenario: --verbose When I run `trema --verbose run hello.rb` interactively And sleep 2 And I trema killall "Hello" Then the output should contain "Konnichi Wa" And the file "Hello.log" should contain "INFO -- : Konnichi Wa"
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
trema-0.10.1 | features/logger/info.feature |
trema-0.10.0 | features/logger/info.feature |
trema-0.9.0 | features/logger/info.feature |