Flowdock
method

find

Importance_0
1.1.12 - Show latest stable - 0 notes - Class: Spec::Story::StepGroup
find(type, name) public

No documentation

This method has no description. You can help the RSpec community by adding new notes.

Hide source
# File lib/spec/story/step_group.rb, line 27
      def find(type, name)
        @hash_of_lists_of_steps[type].each do |step|
          return step if step.matches?(name)
        end
        return nil
      end
Register or log in to add new notes.