openstreetmap-website/vendor/gems/rspec-1.1.2/lib/spec/story/scenario.rb
2008-01-22 16:39:09 +00:00

14 lines
229 B
Ruby

module Spec
module Story
class Scenario
attr_accessor :name, :body, :story
def initialize(story, name, &body)
@story = story
@name = name
@body = body
end
end
end
end