]> git.openstreetmap.org Git - rails.git/blob - vendor/gems/rspec-1.1.2/lib/spec/story/scenario.rb
d83b3eeb8c5077f7bc7db8234623bb3bdcbde062
[rails.git] / vendor / gems / rspec-1.1.2 / lib / spec / story / scenario.rb
1
2 module Spec
3   module Story
4     class Scenario
5       attr_accessor :name, :body, :story
6       
7       def initialize(story, name, &body)
8         @story = story
9         @name = name
10         @body = body
11       end
12     end
13   end
14 end