Class: Spinach::FeatureSteps

Inherits:
Object
  • Object
show all
Includes:
MiniTest::Assertions, RSpec::Matchers, RSpec::Mocks::ExampleMethods, DSL
Defined in:
lib/spinach/feature_steps.rb,
lib/spinach/capybara.rb,
lib/spinach/rspec/mocks.rb,
lib/spinach/frameworks/minitest.rb

Overview

The feature class is the class which all the features must inherit from.

Defined Under Namespace

Modules: Capybara

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from DSL

included

Constructor Details

#initialize(*args) ⇒ FeatureSteps

Returns a new instance of FeatureSteps.



9
10
11
12
# File 'lib/spinach/frameworks/minitest.rb', line 9

def initialize(*args)
  super *args
  self.assertions = 0
end

Instance Attribute Details

#assertionsObject

Returns the value of attribute assertions.



7
8
9
# File 'lib/spinach/frameworks/minitest.rb', line 7

def assertions
  @assertions
end

Class Method Details

.include(*args) ⇒ Object

Exposes the include method publicly so you can add more modules to it due its plastic nature.

Examples:

Spinach::FeatureSteps.include Capybara::DSL


25
26
27
# File 'lib/spinach/feature_steps.rb', line 25

def include(*args)
  include_private(*args)
end

.include_privateObject



18
# File 'lib/spinach/feature_steps.rb', line 18

alias_method :include_private, :include

.inherited(base) ⇒ Object

Registers the feature class for later use.

Parameters:

  • base (Class)

    The host class.



14
15
16
# File 'lib/spinach/feature_steps.rb', line 14

def inherited(base)
  Spinach.feature_steps << base
end

Instance Method Details

#after_eachObject



31
# File 'lib/spinach/feature_steps.rb', line 31

def after_each; end

#before_eachObject



30
# File 'lib/spinach/feature_steps.rb', line 30

def before_each; end