citrusbyte-stories 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +1 -3
- metadata +13 -4
data/README.markdown
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
Stories
|
2
2
|
=======
|
3
3
|
|
4
|
-
Stories and User Acceptance Tests for
|
4
|
+
Stories and User Acceptance Tests for the minimalist test framework [Contest](http://github.com/citrusbyte/contest).
|
5
5
|
|
6
6
|
Description
|
7
7
|
-----------
|
@@ -29,8 +29,6 @@ Declare your stories as follows:
|
|
29
29
|
|
30
30
|
If you are using Rails, you can use stories for your integration tests with Webrat:
|
31
31
|
|
32
|
-
require "stories"
|
33
|
-
|
34
32
|
class UserStoriesTest < ActionController::IntegrationTest
|
35
33
|
story "As a user I want to log in so that I can access restricted features" do
|
36
34
|
setup do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: citrusbyte-stories
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Damian Janowski
|
@@ -12,8 +12,17 @@ cert_chain: []
|
|
12
12
|
|
13
13
|
date: 2009-04-30 00:00:00 -07:00
|
14
14
|
default_executable:
|
15
|
-
dependencies:
|
16
|
-
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: citrusbyte-contest
|
18
|
+
type: :runtime
|
19
|
+
version_requirement:
|
20
|
+
version_requirements: !ruby/object:Gem::Requirement
|
21
|
+
requirements:
|
22
|
+
- - ">="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 0.0.8
|
25
|
+
version:
|
17
26
|
description:
|
18
27
|
email: michel@soveran.com
|
19
28
|
executables: []
|
@@ -54,6 +63,6 @@ rubyforge_project:
|
|
54
63
|
rubygems_version: 1.2.0
|
55
64
|
signing_key:
|
56
65
|
specification_version: 2
|
57
|
-
summary: Write stories and user acceptance tests using
|
66
|
+
summary: Write stories and user acceptance tests using the minimalist testing framework Contest.
|
58
67
|
test_files: []
|
59
68
|
|