changelog shortlog tags changeset manifest revisions annotate raw

vendor/plugins/rspec/stories/resources/stories/failing_story.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$:.push File.join(File.dirname(__FILE__), *%w[.. .. .. lib])
2
3require 'spec/story'
4
5Story "Failing story",
6%(As an RSpec user
7 I want a failing test
8 So that I can observe the output) do
9
10 Scenario "Failing scenario" do
11 Then "true should be false" do
12 true.should == false
13 end
14 end
15end