projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
testing the display name
[rails.git]
/
vendor
/
gems
/
rspec-1.1.2
/
lib
/
spec
/
story
/
given_scenario.rb
1
module Spec
2
module Story
3
class GivenScenario
4
def initialize(name)
5
@name = name
6
end
7
8
def perform(instance, ignore_name)
9
scenario = Runner::StoryRunner.scenario_from_current_story(@name)
10
Runner::ScenarioRunner.new.run(scenario, instance)
11
end
12
end
13
end
14
end