changelog shortlog tags changeset manifest revisions annotate raw

vendor/plugins/rspec/stories/example_groups/nested_groups

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
1Story: Nested example groups
2
3 As an RSpec user
4 I want to nest examples groups
5 So that I can better organize my examples
6
7 Scenario: Run with ruby
8 Given the file ../../examples/pure/stack_spec_with_nested_example_groups.rb
9 When I run it with the ruby interpreter -fs
10 Then the stdout should match /Stack \(empty\)/
11 And the stdout should match /Stack \(full\)/
12
13 Scenario: Run with ruby
14 Given the file ../../examples/pure/stack_spec_with_nested_example_groups.rb
15 When I run it with the spec script -fs
16 Then the stdout should match /Stack \(empty\)/
17 And the stdout should match /Stack \(full\)/