mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-19 15:36:10 +01:00
15 lines
229 B
Ruby
15 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
|