Flowdock
method

assign_steps_to

Importance_0
1.1.12 - Show latest stable - 0 notes - Class: Spec::Story::Story
assign_steps_to(assignee) public

No documentation

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

Hide source
# File lib/spec/story/story.rb, line 21
      def assign_steps_to(assignee)
        if steps=@params[:steps_for]
          steps = [steps] unless steps.is_a?(Array)
          steps.each do |step|
            if step.is_a?(StepGroup)
              assignee.use(step)
            else
              assignee.use(steps_for(step))
            end
          end
        end
      end
Register or log in to add new notes.