Class: Spec::Story::StepGroupHash

Inherits:
Hash
  • Object
show all
Defined in:
lib/spec/story/step_group.rb

Instance Method Summary collapse

Constructor Details

#initializeStepGroupHash

Returns a new instance of StepGroupHash.



5
6
7
8
9
# File 'lib/spec/story/step_group.rb', line 5

def initialize
  super do |h,k|
    h[k] = Spec::Story::StepGroup.new
  end
end