changelog shortlog tags changeset manifest revisions annotate raw

vendor/plugins/rspec/lib/spec/story/scenario.rb

changeset 15: 64acf98d15f4
author: moriq@moriq.com
date: Mon Mar 10 10:12:58 2008 +0900 (16 years ago)
permissions: -rw-r--r--
description: add plugins rspec
1
2module 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
14end