Exception: Cucumber::RbSupport::MultipleWorld
- Defined in:
- lib/cucumber/rb_support/rb_language.rb
Overview
Raised if there are 2 or more World blocks.
Instance Method Summary collapse
-
#initialize(first_proc, second_proc) ⇒ MultipleWorld
constructor
A new instance of MultipleWorld.
Constructor Details
#initialize(first_proc, second_proc) ⇒ MultipleWorld
Returns a new instance of MultipleWorld.
21 22 23 24 25 26 27 28 29 |
# File 'lib/cucumber/rb_support/rb_language.rb', line 21 def initialize(first_proc, second_proc) = "You can only pass a proc to #World once, but it's happening\n" << "in 2 places:\n\n" << first_proc.backtrace_line('World') << "\n" << second_proc.backtrace_line('World') << "\n\n" << "Use Ruby modules instead to extend your worlds. See the Cucumber::RbSupport::RbDsl#World RDoc\n" << "or http://wiki.github.com/cucumber/cucumber/a-whole-new-world.\n\n" super() end |