Method: Cucumber::Glue::ProtoWorld#puts
- Defined in:
- lib/cucumber/glue/proto_world.rb
#puts(*messages) ⇒ Object
Note:
Cucumber might surprise you with the behaviour of this method. Instead of sending the output directly to STDOUT, Cucumber will intercept and cache the message until the current step has finished, and then display it.
If you’d prefer to see the message immediately, call Kernel.puts instead.
Print a message to the output.
82 83 84 |
# File 'lib/cucumber/glue/proto_world.rb', line 82 def puts(*) super end |