class Protest::Stories::Story

Attributes

name[RW]
scenarios[RW]

Public Class Methods

new(name) click to toggle source
# File lib/protest/stories.rb, line 53
def initialize(name)
  @name = name
  @scenarios = []
end