Module: Cucumber::RbSupport::RbDsl

Defined in:
lib/cucumber/rb_support/rb_dsl.rb

Overview

This module defines the methods you can use to define pure Ruby Step Definitions and Hooks. This module is mixed into the toplevel object.

Class Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Class Attribute Details

.rb_language=(value) ⇒ Object (writeonly)

Sets the attribute rb_language

Parameters:

  • value

    the value to set the attribute rb_language to.



8
9
10
# File 'lib/cucumber/rb_support/rb_dsl.rb', line 8

def rb_language=(value)
  @rb_language = value
end

Class Method Details

.alias_adverb(adverb) ⇒ Object



10
11
12
# File 'lib/cucumber/rb_support/rb_dsl.rb', line 10

def alias_adverb(adverb)
  alias_method adverb, :register_rb_step_definition
end

.build_rb_world_factory(world_modules, proc) ⇒ Object



14
15
16
# File 'lib/cucumber/rb_support/rb_dsl.rb', line 14

def build_rb_world_factory(world_modules, proc)
  @rb_language.build_rb_world_factory(world_modules, proc)
end

.register_rb_hook(phase, tag_names, proc) ⇒ Object



18
19
20
# File 'lib/cucumber/rb_support/rb_dsl.rb', line 18

def register_rb_hook(phase, tag_names, proc)
  @rb_language.register_rb_hook(phase, tag_names, proc)
end

.register_rb_step_definition(regexp, proc) ⇒ Object



26
27
28
# File 'lib/cucumber/rb_support/rb_dsl.rb', line 26

def register_rb_step_definition(regexp, proc)
  @rb_language.register_rb_step_definition(regexp, proc)
end

.register_rb_transform(regexp, proc) ⇒ Object



22
23
24
# File 'lib/cucumber/rb_support/rb_dsl.rb', line 22

def register_rb_transform(regexp, proc)
  @rb_language.register_rb_transform(regexp, proc)          
end

Instance Method Details

#After(*tag_names, &proc) ⇒ Object

Registers a proc that will run after each Scenario. You can register as as you want (typically from ruby scripts under support/hooks.rb).



61
62
63
# File 'lib/cucumber/rb_support/rb_dsl.rb', line 61

def After(*tag_names, &proc)
  RbDsl.register_rb_hook('after', tag_names, proc)
end

#AfterConfiguration(&proc) ⇒ Object

Registers a proc that will run after Cucumber is configured. You can register as as you want (typically from ruby scripts under support/hooks.rb).



82
83
84
# File 'lib/cucumber/rb_support/rb_dsl.rb', line 82

def AfterConfiguration(&proc)
  RbDsl.register_rb_hook('after_configuration', [], proc)
end

#AfterStep(*tag_names, &proc) ⇒ Object

Registers a proc that will run after each Step. You can register as as you want (typically from ruby scripts under support/hooks.rb).



67
68
69
# File 'lib/cucumber/rb_support/rb_dsl.rb', line 67

def AfterStep(*tag_names, &proc)
  RbDsl.register_rb_hook('after_step', tag_names, proc)
end

#Before(*tag_names, &proc) ⇒ Object

Registers a proc that will run before each Scenario. You can register as as you want (typically from ruby scripts under support/hooks.rb).



55
56
57
# File 'lib/cucumber/rb_support/rb_dsl.rb', line 55

def Before(*tag_names, &proc)
  RbDsl.register_rb_hook('before', tag_names, proc)
end

#register_rb_step_definition(regexp, &proc) ⇒ Object

Registers a new Ruby StepDefinition. This method is aliased to Given, When and Then, and also to the i18n translations whenever a feature of a new language is loaded.

The &proc gets executed in the context of a World object, which is defined by #World. A new World object is created for each scenario and is shared across step definitions within that scenario.



95
96
97
# File 'lib/cucumber/rb_support/rb_dsl.rb', line 95

def register_rb_step_definition(regexp, &proc)
  RbDsl.register_rb_step_definition(regexp, proc)
end

#Transform(regexp, &proc) ⇒ Object

Registers a proc that will be called with a step definition argument if it matches the pattern passed as the first argument to Transform. Alternatively, if the pattern contains captures then they will be yielded as arguments to the provided proc. The return value of the proc is consequently yielded to the step definition.



76
77
78
# File 'lib/cucumber/rb_support/rb_dsl.rb', line 76

def Transform(regexp, &proc)
  RbDsl.register_rb_transform(regexp, proc)
end

#World(*world_modules, &proc) ⇒ Object

Registers any number of world_modules (Ruby Modules) and/or a Proc. The proc will be executed once before each scenario to create an Object that the scenario’s steps will run within. Any world_modules will be mixed into this Object (via Object#extend).

This method is typically called from one or more Ruby scripts under features/support. You can call this method as many times as you like (to register more modules), but if you try to register more than one Proc you will get an error.

Cucumber will not yield anything to the proc. Examples:

World do
  MyClass.new
end

World(MyModule)


49
50
51
# File 'lib/cucumber/rb_support/rb_dsl.rb', line 49

def World(*world_modules, &proc)
  RbDsl.build_rb_world_factory(world_modules, proc)
end