README.rdoc in pickle-0.2.2 vs README.rdoc in pickle-0.2.3
- old
+ new
@@ -64,10 +64,12 @@
* {Nick Rutherford}[http://github.com/nruth]
* {Tobi Knaup}[http://github.com/guenter]
* {Michael MacDonald}[http://github.com/schlick]
* {Michael Moen}[http://github.com/UnderpantsGnome]
+* {Myron Marston}[http://github.com/myronmarston]
+* {Stephan Hagemann}[http://github.com/xing]
== Get Started
(you'd better install cucumber)
@@ -195,9 +197,20 @@
Then 10 events should exist
"Then <b>n models</b> should exist with <b>fields</b>", e.g.
Then 2 people should exist with father: person "fred"
+
+"Then the following <b>models</b> exist". This allows the creation of multiple models
+using a table syntax. Using a column with the singularized name of the model creates a referenceable model. E.g.
+
+ Then the following users exist:
+ | name | activated |
+ | Freddy | false |
+
+ Then the following users exist:
+ | user | name | activated |
+ | Fred | Freddy | false |
===== Asserting associations
One-to-one assocs: "Then <b>a model</b> should be <b>other model</b>'s <b>association</b>", e.g.
\ No newline at end of file