projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix setPosition().
[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