branston 0.3.4 → 0.3.6

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.
Files changed (50) hide show
  1. data/README.rdoc +29 -4
  2. data/lib/branston/app/helpers/application_helper.rb +2 -2
  3. data/lib/branston/config/environment.rb +1 -6
  4. data/lib/branston/config/environments/production.rb +1 -4
  5. data/lib/branston/coverage/app-controllers-application_controller_rb.html +141 -0
  6. data/lib/branston/coverage/app-controllers-iterations_controller_rb.html +699 -0
  7. data/lib/branston/coverage/app-controllers-outcomes_controller_rb.html +675 -0
  8. data/lib/branston/coverage/app-controllers-preconditions_controller_rb.html +699 -0
  9. data/lib/branston/coverage/app-controllers-releases_controller_rb.html +621 -0
  10. data/lib/branston/coverage/app-controllers-scenarios_controller_rb.html +687 -0
  11. data/lib/branston/coverage/app-controllers-sessions_controller_rb.html +327 -0
  12. data/lib/branston/coverage/app-controllers-stories_controller_rb.html +795 -0
  13. data/lib/branston/coverage/app-controllers-user_roles_controller_rb.html +609 -0
  14. data/lib/branston/coverage/app-controllers-users_controller_rb.html +231 -0
  15. data/lib/branston/coverage/app-helpers-application_helper_rb.html +147 -0
  16. data/lib/branston/coverage/app-helpers-iterations_helper_rb.html +75 -0
  17. data/lib/branston/coverage/app-helpers-outcomes_helper_rb.html +75 -0
  18. data/lib/branston/coverage/app-helpers-preconditions_helper_rb.html +75 -0
  19. data/lib/branston/coverage/app-helpers-releases_helper_rb.html +75 -0
  20. data/lib/branston/coverage/app-helpers-sessions_helper_rb.html +75 -0
  21. data/lib/branston/coverage/app-helpers-stories_helper_rb.html +75 -0
  22. data/lib/branston/coverage/app-helpers-user_roles_helper_rb.html +75 -0
  23. data/lib/branston/coverage/app-models-iteration_rb.html +153 -0
  24. data/lib/branston/coverage/app-models-outcome_rb.html +159 -0
  25. data/lib/branston/coverage/app-models-participation_rb.html +105 -0
  26. data/lib/branston/coverage/app-models-precondition_rb.html +159 -0
  27. data/lib/branston/coverage/app-models-release_rb.html +105 -0
  28. data/lib/branston/coverage/app-models-scenario_rb.html +147 -0
  29. data/lib/branston/coverage/app-models-story_rb.html +261 -0
  30. data/lib/branston/coverage/app-models-user_rb.html +399 -0
  31. data/lib/branston/coverage/app-models-user_role_rb.html +105 -0
  32. data/lib/branston/coverage/index.html +570 -0
  33. data/lib/branston/coverage/jquery-1.3.2.min.js +19 -0
  34. data/lib/branston/coverage/jquery.tablesorter.min.js +15 -0
  35. data/lib/branston/coverage/lib-client_rb.html +537 -0
  36. data/lib/branston/coverage/lib-faker_extras_rb.html +207 -0
  37. data/lib/branston/coverage/lib-story_generator_rb.html +873 -0
  38. data/lib/branston/coverage/print.css +12 -0
  39. data/lib/branston/coverage/rcov.js +42 -0
  40. data/lib/branston/coverage/screen.css +270 -0
  41. data/lib/branston/db/test.sqlite3 +0 -0
  42. data/lib/branston/lib/branston.rb +2 -1
  43. data/lib/branston/log/development.log +76 -0
  44. data/lib/branston/log/test.log +3275 -0
  45. data/lib/branston/test/unit/client_test.rb +22 -20
  46. data/lib/branston/test/unit/helpers/application_helper_test.rb +40 -0
  47. data/lib/branston/tmp/performance/BrowsingTest#test_homepage_process_time_flat.txt +7 -0
  48. data/lib/branston/tmp/performance/BrowsingTest#test_homepage_process_time_graph.html +5305 -0
  49. data/lib/branston/tmp/performance/BrowsingTest#test_homepage_process_time_tree.txt +9858 -0
  50. metadata +44 -2
@@ -0,0 +1,12 @@
1
+ /* Hide controls */
2
+
3
+ body {
4
+ color: #000000;
5
+ background-color: #ffffff;
6
+ }
7
+
8
+ /* Hide controls */
9
+
10
+ div.filters {
11
+ display: none;
12
+ }
@@ -0,0 +1,42 @@
1
+ function toggleCode( id ) {
2
+ if ( document.getElementById ) {
3
+ elem = document.getElementById( id );
4
+ } else if ( document.all ) {
5
+ elem = eval( "document.all." + id );
6
+ } else {
7
+ return false;
8
+ }
9
+
10
+ elemStyle = elem.style;
11
+
12
+ if ( elemStyle.display != "block" ) {
13
+ elemStyle.display = "block";
14
+ } else {
15
+ elemStyle.display = "none";
16
+ }
17
+
18
+ return true;
19
+ }
20
+
21
+ function restripe() {
22
+ i = 0;
23
+ $('table#report_table tbody tr').each(function(){
24
+ if (this.style.display != "none") {
25
+ i += 1;
26
+ classes = this.className.split(" ");
27
+ if ($.inArray("even",classes) != -1) {
28
+ classes.splice($.inArray("even",classes),1);
29
+ } else if ($.inArray("odd",classes) != -1) {
30
+ classes.splice($.inArray("odd",classes),1);
31
+ }
32
+ if (i % 2 === 0) {
33
+ this.className = classes.join(" ") + " odd";
34
+ } else {
35
+ this.className = classes.join(" ") + " even";
36
+ }
37
+ }
38
+ });
39
+ }
40
+
41
+ // Fix IE's lack of support for indexOf (!)
42
+ if (!Array.indexOf) { Array.prototype.indexOf = function(obj){ for(var i=0; i<this.length; i++){ if(this[i]==obj){return i;} } return -1; }}
@@ -0,0 +1,270 @@
1
+ /* @group General */
2
+
3
+ body {
4
+ font-family: Verdana, Helvetica, Arial, Sans-Serif;
5
+ font-size: 12px;
6
+ color: #4C4C4C;
7
+ background-color: #F4F2ED;
8
+ padding: 1em;
9
+ }
10
+
11
+ a:link {
12
+ color: #191919;
13
+ }
14
+
15
+ a:visited {
16
+ color: #191919;
17
+ }
18
+
19
+ pre, code {
20
+ color: #000000;
21
+ font-family: "Bitstream Vera Sans Mono","Monaco","Courier New",monospace;
22
+ font-size: 95%;
23
+ line-height: 1.3em;
24
+ margin-top: 0;
25
+ margin-bottom: 0;
26
+ padding: 0;
27
+ word-wrap: break-word;
28
+ }
29
+
30
+ h1, h2, h3, h4, h5, h6 {
31
+ margin: 0em 0em 1em 0em;
32
+ color: #666666;
33
+ }
34
+
35
+ h1 {
36
+ display: block;
37
+ font-size: 2em;
38
+ letter-spacing: -1px;
39
+ }
40
+
41
+ h2 {
42
+ margin-top: -1em;
43
+ }
44
+
45
+ fieldset {
46
+ display: inline;
47
+ border: 0px;
48
+ padding: 0px;
49
+ margin-right: 1em;
50
+ }
51
+
52
+ div.filters {
53
+ margin-bottom: 1em;
54
+ }
55
+
56
+ .hidden {
57
+ display: none;
58
+ }
59
+
60
+ /* @end */
61
+
62
+ /* @group Cross-References */
63
+
64
+ span.cross-ref-title {
65
+ font-size: 140%;
66
+ }
67
+
68
+ span.cross-ref a {
69
+ text-decoration: none;
70
+ }
71
+
72
+ span.cross-ref {
73
+ background-color:#f3f7fa;
74
+ border: 1px dashed #333;
75
+ margin: 1em;
76
+ padding: 0.5em;
77
+ overflow: hidden;
78
+ }
79
+
80
+ a.crossref-toggle {
81
+ text-decoration: none;
82
+ }
83
+
84
+ /* @end */
85
+
86
+ /* @group Report Table */
87
+
88
+ div.report_table_wrapper {
89
+ min-width: 900px;
90
+ }
91
+
92
+ table.report {
93
+ border-collapse: collapse;
94
+ border: 1px solid #666666;
95
+ width: 100%;
96
+ margin-bottom: 1em;
97
+ }
98
+
99
+ table.report tr {
100
+ line-height: 1.75em;
101
+ }
102
+
103
+ table.report th {
104
+ background: #666666;
105
+ color: #ffffff;
106
+ text-align: right;
107
+ text-transform: uppercase;
108
+ font-size: .8em;
109
+ font-weight: bold;
110
+ padding: 0em .5em;
111
+ border: 1px solid #666666;
112
+ }
113
+
114
+ table.report tfoot tr {
115
+ background: #dddddd;
116
+ font-weight: bold;
117
+ padding: .5em;
118
+ border: 1px solid #666666;
119
+ }
120
+
121
+ th.left_align, td.left_align {
122
+ text-align: left !important;
123
+ }
124
+
125
+ th.right_align, td.right_align {
126
+ text-align: right;
127
+ padding-right: 2em !important;
128
+ }
129
+
130
+ table.report th.header:hover {
131
+ cursor: pointer;
132
+ text-decoration: underline;
133
+ }
134
+
135
+ table.report th.headerSortUp:after{
136
+ content: "\25BC";
137
+ margin-left: 1em;
138
+ }
139
+
140
+ table.report th.headerSortDown:after {
141
+ content: "\25B2";
142
+ margin-left: 1em;
143
+ }
144
+
145
+ table.report tr.summary_row {
146
+ background: #cccccc;
147
+ border: 1px solid #cccccc;
148
+ }
149
+
150
+ table.report tr.summary_row td {
151
+ padding-left: .2em !important;
152
+ color: #333333;
153
+ font-weight: bold;
154
+ }
155
+
156
+ table.report td {
157
+ padding: .2em .5em .2em .5em;
158
+ }
159
+
160
+ table.report td a {
161
+ text-decoration: none;
162
+ }
163
+
164
+ table.report tbody tr:hover {
165
+ background: #cccccc !important;
166
+ }
167
+
168
+ table.report tr.summary_row td {
169
+ border-bottom: 1px solid #aaaaaa;
170
+ }
171
+
172
+ table.report tr {
173
+ background-color: #eeeeee;
174
+ }
175
+
176
+ table.report tr.odd {
177
+ background-color: #dddddd;
178
+ }
179
+
180
+ /* @end */
181
+
182
+ /* @group Percentage Graphs */
183
+
184
+ div.percent_graph_legend {
185
+ width: 5.5em;
186
+ float: left;
187
+ margin: .5em 1em .5em 0em;
188
+ height: 1em;
189
+ line-height: 1em;
190
+ }
191
+
192
+ div.percent_graph {
193
+ height: 1em;
194
+ border: #333333 1px solid;
195
+ empty-cells: show;
196
+ padding: 0px;
197
+ border-collapse: collapse;
198
+ width: 100px !important;
199
+ float: left;
200
+ margin: .5em 1em .5em 0em;
201
+ }
202
+
203
+ div.percent_graph div {
204
+ float: left;
205
+ height: 1em;
206
+ padding: 0px !important;
207
+ }
208
+
209
+ div.percent_graph div.covered {
210
+ background: #649632;
211
+ }
212
+
213
+ div.percent_graph div.uncovered {
214
+ background: #a92730;
215
+ }
216
+
217
+ div.percent_graph div.NA {
218
+ background: #eaeaea;
219
+ }
220
+
221
+ /* @end */
222
+
223
+ /* @group Details page */
224
+
225
+ table.details {
226
+ margin-top: 1em;
227
+ border-collapse: collapse;
228
+ width: 100%;
229
+ border: 1px solid #666666;
230
+ }
231
+
232
+ table.details tr {
233
+ line-height: 1.75em;
234
+ }
235
+
236
+ table.details td {
237
+ padding: .25em;
238
+ }
239
+
240
+ span.inferred, span.inferred1, span.marked, span.marked1, span.uncovered, span.uncovered1 {
241
+ display: block;
242
+ padding: .25em;
243
+ }
244
+
245
+ tr.inferred td, span.inferred {
246
+ background-color: #e0dedb;
247
+ }
248
+
249
+ tr.inferred1 td, span.inferred1 {
250
+ background-color: #e0dedb;
251
+ }
252
+
253
+ tr.marked td, span.marked, span.marked1 {
254
+ background-color: #bed2be;
255
+ }
256
+
257
+ tr.uncovered td, span.uncovered {
258
+ background-color: #ce8b8c;
259
+ }
260
+
261
+ tr.uncovered1 td, span.uncovered1 {
262
+ background-color: #ce8b8c;
263
+ }
264
+
265
+ div.key {
266
+ border: 1px solid #666666;
267
+ margin: 1em 0em;
268
+ }
269
+
270
+ /* @end */
Binary file
@@ -117,8 +117,9 @@ class Branston
117
117
  ENV["RAILS_ENV"] = options[:environment]
118
118
  RAILS_ENV.replace(options[:environment]) if defined?(RAILS_ENV)
119
119
 
120
+ $BRANSTON_LOG_PATH = options[:directory] + '/log'
120
121
  require File.dirname(__FILE__) + "/../config/environment"
121
-
122
+
122
123
  ActiveRecord::Base.establish_connection(
123
124
  :adapter => 'sqlite3',
124
125
  :database => options[:directory] + '/branston.sqlite3',
@@ -1067,3 +1067,79 @@ Rendered layouts/_meta (0.2ms)
1067
1067
  Rendered layouts/_header (0.4ms)
1068
1068
  Rendered layouts/_footer (0.2ms)
1069
1069
  Completed in 17ms (View: 13, DB: 0) | 200 OK [http://localhost/session/new]
1070
+ SQL (1.2ms)  SELECT name
1071
+ FROM sqlite_master
1072
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1073
+ 
1074
+ SQL (0.8ms) SELECT version FROM schema_migrations
1075
+ SQL (0.2ms) select sqlite_version(*)
1076
+ SQL (0.2ms)  SELECT name
1077
+ FROM sqlite_master
1078
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1079
+ 
1080
+ SQL (4.2ms) CREATE TABLE "iterations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "velocity" integer, "name" varchar(255), "start_date" datetime, "end_date" datetime, "created_at" datetime, "updated_at" datetime, "release_id" integer) 
1081
+ SQL (0.3ms)  SELECT name
1082
+ FROM sqlite_master
1083
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1084
+ 
1085
+ SQL (2.7ms) CREATE TABLE "outcomes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "scenario_id" integer, "created_at" datetime, "updated_at" datetime) 
1086
+ SQL (0.3ms)  SELECT name
1087
+ FROM sqlite_master
1088
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1089
+ 
1090
+ SQL (2.6ms) CREATE TABLE "participations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "iteration_id" integer, "created_at" datetime, "updated_at" datetime) 
1091
+ SQL (0.4ms)  SELECT name
1092
+ FROM sqlite_master
1093
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1094
+ 
1095
+ SQL (2.3ms) CREATE TABLE "preconditions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "scenario_id" integer, "created_at" datetime, "updated_at" datetime) 
1096
+ SQL (0.4ms)  SELECT name
1097
+ FROM sqlite_master
1098
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1099
+ 
1100
+ SQL (3.6ms) CREATE TABLE "releases" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "release_date" date, "notes" text, "created_at" datetime, "updated_at" datetime) 
1101
+ SQL (0.5ms)  SELECT name
1102
+ FROM sqlite_master
1103
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1104
+ 
1105
+ SQL (2.4ms) CREATE TABLE "scenarios" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "story_id" integer, "created_at" datetime, "updated_at" datetime) 
1106
+ SQL (0.7ms)  SELECT name
1107
+ FROM sqlite_master
1108
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1109
+ 
1110
+ SQL (2.4ms) CREATE TABLE "stories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" text, "points" integer, "iteration_id" integer, "created_at" datetime, "updated_at" datetime, "title" varchar(40), "author_id" integer, "slug" varchar(255) DEFAULT '' NOT NULL) 
1111
+ SQL (0.6ms)  SELECT name
1112
+ FROM sqlite_master
1113
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1114
+ 
1115
+ SQL (2.6ms) CREATE TABLE "user_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime, "story_id" integer) 
1116
+ SQL (0.6ms)  SELECT name
1117
+ FROM sqlite_master
1118
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1119
+ 
1120
+ SQL (2.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar(40), "name" varchar(100) DEFAULT '', "email" varchar(100), "crypted_password" varchar(40), "salt" varchar(40), "created_at" datetime, "updated_at" datetime, "remember_token" varchar(40), "remember_token_expires_at" datetime) 
1121
+ SQL (2.3ms) CREATE UNIQUE INDEX "index_users_on_login" ON "users" ("login")
1122
+ SQL (0.8ms)  SELECT name
1123
+ FROM sqlite_master
1124
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1125
+ 
1126
+ SQL (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1127
+ SQL (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1128
+ SQL (0.7ms)  SELECT name
1129
+ FROM sqlite_master
1130
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1131
+ 
1132
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1133
+ SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091204173634')
1134
+ SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127173744')
1135
+ SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127164705')
1136
+ SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127122422')
1137
+ SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127164446')
1138
+ SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091202105555')
1139
+ SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127164217')
1140
+ SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127172950')
1141
+ SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127172849')
1142
+ SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127120627')
1143
+ SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127144645')
1144
+ SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127114237')
1145
+ SQL (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20091127131037')
@@ -0,0 +1,3275 @@
1
+ # Logfile created on Fri Dec 11 11:38:03 +0000 2009 Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Alias omnis tenetur assumenda eligendi n') LIMIT 1
2
+ Story Create (0.4ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('alias-omnis-tenetur-assumenda-eligendi-nisi', '2009-12-11 11:38:04', 'Alias omnis tenetur assumenda eligendi nisi.', '2009-12-11 11:38:04', 2, 'Vel voluptate "aliquid" et doloribus sint eum ad sequi. ', NULL, NULL)
3
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
4
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:04', 'Vel voluptate aliquid et doloribus sint eum ad sequi.', '2009-12-11 11:38:04', 1)
5
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
6
+ Precondition Create (0.3ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:04', '2009-12-11 11:38:04', 'A product called "onion chutney"')
7
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
8
+ Precondition Create (0.3ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:04', '2009-12-11 11:38:04', 'A product called "onion chutney"')
9
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
10
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:04', '2009-12-11 11:38:04', 'Alias omnis "tenetur" assumenda eligendi nisi. ')
11
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
12
+ Precondition Create (0.3ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:04', '2009-12-11 11:38:04', 'Vel voluptate "aliquid" et doloribus "sint" eum ad sequi Alias omnis tenetur assumenda eligendi nisi. ')
13
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
14
+ Precondition Create (0.3ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:04', '2009-12-11 11:38:04', 'A product called "onion chutney"')
15
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
16
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:04', '2009-12-11 11:38:04', 'Voluptas quo "minima" sapiente voluptatibus sit. ')
17
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
18
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:04', '2009-12-11 11:38:04', 'Voluptas quo "minima" sapiente voluptatibus "sit" Iusto est architecto dolorum omnis provident. ')
19
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
20
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" IS NULL) LIMIT 1
21
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" IS NULL) LIMIT 1
22
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Voluptas quo minima sapiente voluptatibu') LIMIT 1
23
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('voluptas-quo-minima-sapiente-voluptatibus-sit', '2009-12-11 11:38:04', 'Voluptas quo minima sapiente voluptatibus sit.', '2009-12-11 11:38:04', 2, 'Iusto est "architecto" dolorum omnis provident. ', NULL, NULL)
24
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
25
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
26
+ - aut
27
+ - qui
28
+ - animi
29
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:04', '2009-12-11 11:38:04', NULL, 1, '2009-12-25 00:00:00')
30
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
31
+ Story Load (0.1ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Iusto est architecto dolorum omnis provi') LIMIT 1
32
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('iusto-est-architecto-dolorum-omnis-provident', '2009-12-11 11:38:04', 'Iusto est architecto dolorum omnis provident.', '2009-12-11 11:38:04', 2, 'Delectus esse "atque" odit quos et. ', NULL, 1)
33
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
34
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE (iteration_id IS NOT NULL) 
35
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Product Search') LIMIT 1
36
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('product-search', '2009-12-11 11:38:04', 'Product Search', '2009-12-11 11:38:04', 2, 'I should be able to search for products by title', NULL, NULL)
37
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
38
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Quia omnis molestiae voluptatem.') LIMIT 1
39
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('quia-omnis-molestiae-voluptatem', '2009-12-11 11:38:04', 'Quia omnis molestiae voluptatem.', '2009-12-11 11:38:04', 2, 'Quia omnis "molestiae" voluptatem. ', NULL, NULL)
40
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
41
+ Scenario Create (0.3ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:04', 'Delectus esse atque odit quos et.', '2009-12-11 11:38:04', 2)
42
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
43
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:04', '2009-12-11 11:38:04', 'Velit sit "sed" consequuntur. ')
44
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
45
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:04', '2009-12-11 11:38:04', 'Delectus esse "atque" odit quos "et" Quia omnis molestiae voluptatem. ')
46
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
47
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:04', '2009-12-11 11:38:04', 'Totam vero "explicabo" eligendi voluptas amet voluptate voluptas ut. ')
48
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
49
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:04', '2009-12-11 11:38:04', 'Perspiciatis non "animi" rerum quisquam et. ')
50
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
51
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:04', "story_id" = 1 WHERE "id" = 1
52
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Totam vero explicabo eligendi voluptas a') LIMIT 1
53
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('totam-vero-explicabo-eligendi-voluptas-amet-voluptate-voluptas-ut', '2009-12-11 11:38:04', 'Totam vero explicabo eligendi voluptas amet voluptate voluptas ut.', '2009-12-11 11:38:04', 2, 'Consequuntur temporibus "optio" iste. ', NULL, NULL)
54
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
55
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:04', 'Velit sit sed consequuntur.', '2009-12-11 11:38:04', 3)
56
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
57
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:04', '2009-12-11 11:38:04', 'Esse quis "deserunt" minima sit voluptas. ')
58
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
59
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:04', '2009-12-11 11:38:04', 'Velit sit "sed" consequuntur Totam "vero" explicabo eligendi voluptas amet voluptate voluptas ut. ')
60
+ Precondition Load (0.5ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
61
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:04', '2009-12-11 11:38:04', 'Voluptatem omnis "blanditiis" enim. ')
62
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
63
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:04', '2009-12-11 11:38:04', 'Aut omnis "quia" earum et corporis nobis iure. ')
64
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
65
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:04', "story_id" = 1 WHERE "id" = 2
66
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "scenarios" WHERE ("scenarios".story_id = 1) 
67
+ Scenario Load (0.4ms) SELECT * FROM "scenarios" WHERE ("scenarios".story_id = 1) 
68
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "preconditions" WHERE ("preconditions".scenario_id = 1) 
69
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions".scenario_id = 1) 
70
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "outcomes" WHERE ("outcomes".scenario_id = 1) 
71
+ Outcome Load (0.4ms) SELECT * FROM "outcomes" WHERE ("outcomes".scenario_id = 1) 
72
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "preconditions" WHERE ("preconditions".scenario_id = 2) 
73
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions".scenario_id = 2) 
74
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "outcomes" WHERE ("outcomes".scenario_id = 2) 
75
+ Outcome Load (0.4ms) SELECT * FROM "outcomes" WHERE ("outcomes".scenario_id = 2) 
76
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Product Search') LIMIT 1
77
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('product-search', '2009-12-11 11:38:04', 'Product Search', '2009-12-11 11:38:04', 2, 'I should be able to search for products by title', NULL, NULL)
78
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
79
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Consequuntur temporibus optio iste.') LIMIT 1
80
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('consequuntur-temporibus-optio-iste', '2009-12-11 11:38:04', 'Consequuntur temporibus optio iste.', '2009-12-11 11:38:04', 2, 'Et aut "voluptas" eius deserunt dolor. ', NULL, NULL)
81
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
82
+ Scenario Create (0.4ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:05', 'Perspiciatis non animi rerum quisquam et.', '2009-12-11 11:38:05', 2)
83
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
84
+ Precondition Create (0.3ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Quam est "voluptatem" nihil. ')
85
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
86
+ Precondition Create (0.3ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Perspiciatis non "animi" rerum quisquam "et" Consequuntur temporibus optio iste. ')
87
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
88
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Omnis vitae "maiores" ad. ')
89
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
90
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Magnam officia "blanditiis" recusandae temporibus et amet eaque adipisci. ')
91
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
92
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:05', "story_id" = 1 WHERE "id" = 1
93
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Voluptatem omnis blanditiis enim.') LIMIT 1
94
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('voluptatem-omnis-blanditiis-enim', '2009-12-11 11:38:05', 'Voluptatem omnis blanditiis enim.', '2009-12-11 11:38:05', 2, 'Alias voluptate "neque" qui nostrum. ', NULL, NULL)
95
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
96
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:05', 'Esse quis deserunt minima sit voluptas.', '2009-12-11 11:38:05', 3)
97
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
98
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Accusantium voluptatum "rerum" eos hic. ')
99
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
100
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Esse quis "deserunt" minima sit "voluptas" Voluptatem omnis blanditiis enim. ')
101
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
102
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Et voluptatum "sint" nesciunt voluptate qui rerum est. ')
103
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
104
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Molestiae quia "vitae" quos. ')
105
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
106
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:05', "story_id" = 1 WHERE "id" = 2
107
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "scenarios" WHERE ("scenarios".story_id = 1) 
108
+ Scenario Load (0.4ms) SELECT * FROM "scenarios" WHERE ("scenarios".story_id = 1) 
109
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "preconditions" WHERE ("preconditions".scenario_id = 1) 
110
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions".scenario_id = 1) 
111
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "outcomes" WHERE ("outcomes".scenario_id = 1) 
112
+ Outcome Load (0.5ms) SELECT * FROM "outcomes" WHERE ("outcomes".scenario_id = 1) 
113
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "preconditions" WHERE ("preconditions".scenario_id = 2) 
114
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions".scenario_id = 2) 
115
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "outcomes" WHERE ("outcomes".scenario_id = 2) 
116
+ Outcome Load (0.4ms) SELECT * FROM "outcomes" WHERE ("outcomes".scenario_id = 2) 
117
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Product Search') LIMIT 1
118
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('product-search', '2009-12-11 11:38:05', 'Product Search', '2009-12-11 11:38:05', 2, 'I should be able to search for products by title', NULL, NULL)
119
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
120
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Et aut voluptas eius deserunt dolor.') LIMIT 1
121
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('et-aut-voluptas-eius-deserunt-dolor', '2009-12-11 11:38:05', 'Et aut voluptas eius deserunt dolor.', '2009-12-11 11:38:05', 2, 'Voluptates tempora "atque" quis. ', NULL, NULL)
122
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
123
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:05', 'Aut omnis quia earum et corporis nobis iure.', '2009-12-11 11:38:05', 2)
124
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
125
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Totam corrupti "dolor" quo animi nemo. ')
126
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
127
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Aut omnis "quia" earum et "corporis" nobis iure Et aut voluptas eius deserunt dolor. ')
128
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
129
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Autem aliquam "non" reiciendis. ')
130
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
131
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'In voluptas "nulla" maxime voluptatem tenetur soluta voluptatem voluptatum. ')
132
+ Outcome Load (0.4ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
133
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:05', "story_id" = 1 WHERE "id" = 1
134
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Omnis vitae maiores ad.') LIMIT 1
135
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('omnis-vitae-maiores-ad', '2009-12-11 11:38:05', 'Omnis vitae maiores ad.', '2009-12-11 11:38:05', 2, 'Architecto temporibus "sit" voluptatem. ', NULL, NULL)
136
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
137
+ Scenario Create (0.1ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:05', 'Quam est voluptatem nihil.', '2009-12-11 11:38:05', 3)
138
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
139
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Quis accusamus "quam" quas commodi modi accusantium quis. ')
140
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
141
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Quam est "voluptatem" nihil Omnis "vitae" maiores ad. ')
142
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
143
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Aut occaecati "accusantium" assumenda minima sint. ')
144
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
145
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Inventore expedita "neque" est corporis qui. ')
146
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
147
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:05', "story_id" = 1 WHERE "id" = 2
148
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" 
149
+ Story Load (0.3ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Product Search') LIMIT 1
150
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" 
151
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Product Search') LIMIT 1
152
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('product-search', '2009-12-11 11:38:05', 'Product Search', '2009-12-11 11:38:05', 2, 'I should be able to search for products by title', NULL, NULL)
153
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
154
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Alias voluptate neque qui nostrum.') LIMIT 1
155
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('alias-voluptate-neque-qui-nostrum', '2009-12-11 11:38:05', 'Alias voluptate neque qui nostrum.', '2009-12-11 11:38:05', 2, 'Facilis commodi "odit" quisquam. ', NULL, NULL)
156
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
157
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:05', 'Magnam officia blanditiis recusandae temporibus et amet eaque adipisci.', '2009-12-11 11:38:05', 2)
158
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
159
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Porro voluptatem "aut" facere. ')
160
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
161
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Magnam officia "blanditiis" recusandae temporibus "et" amet eaque adipisci Alias voluptate neque qui nostrum. ')
162
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
163
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Quo est "dignissimos" ut. ')
164
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
165
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Sunt laboriosam "excepturi" delectus. ')
166
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
167
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:05', "story_id" = 1 WHERE "id" = 1
168
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Et voluptatum sint nesciunt voluptate qu') LIMIT 1
169
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('et-voluptatum-sint-nesciunt-voluptate-qui-rerum-est', '2009-12-11 11:38:05', 'Et voluptatum sint nesciunt voluptate qui rerum est.', '2009-12-11 11:38:05', 2, 'Et culpa "autem" possimus. ', NULL, NULL)
170
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
171
+ Scenario Create (0.1ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:05', 'Accusantium voluptatum rerum eos hic.', '2009-12-11 11:38:05', 3)
172
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
173
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Qui dolores "excepturi" laudantium. ')
174
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
175
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Accusantium voluptatum "rerum" eos hic "Et" voluptatum sint nesciunt voluptate qui rerum est. ')
176
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
177
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Reprehenderit minima "autem" sed aut sunt. ')
178
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
179
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Vel blanditiis "debitis" fuga. ')
180
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
181
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:05', "story_id" = 1 WHERE "id" = 2
182
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Product Search') LIMIT 1
183
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('product-search', '2009-12-11 11:38:05', 'Product Search', '2009-12-11 11:38:05', 2, 'I should be able to search for products by title', NULL, NULL)
184
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
185
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Voluptates tempora atque quis.') LIMIT 1
186
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('voluptates-tempora-atque-quis', '2009-12-11 11:38:05', 'Voluptates tempora atque quis.', '2009-12-11 11:38:05', 2, 'Voluptas incidunt "optio" consequatur eveniet beatae quia magni. ', NULL, NULL)
187
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
188
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:05', 'Molestiae quia vitae quos.', '2009-12-11 11:38:05', 2)
189
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
190
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Cum veniam "impedit" consequatur corrupti. ')
191
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
192
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Molestiae quia "vitae" quos Voluptates "tempora" atque quis. ')
193
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
194
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Quo dignissimos "at" suscipit rerum possimus vero. ')
195
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
196
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Hic exercitationem "harum" nihil eius facere in impedit. ')
197
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
198
+ Scenario Update (0.1ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:05', "story_id" = 1 WHERE "id" = 1
199
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Autem aliquam non reiciendis.') LIMIT 1
200
+ Story Create (0.1ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('autem-aliquam-non-reiciendis', '2009-12-11 11:38:05', 'Autem aliquam non reiciendis.', '2009-12-11 11:38:05', 2, 'Rerum sint "est" a distinctio rerum commodi. ', NULL, NULL)
201
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
202
+ Scenario Create (0.1ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:05', 'Totam corrupti dolor quo animi nemo.', '2009-12-11 11:38:05', 3)
203
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
204
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Porro praesentium "repudiandae" ut animi. ')
205
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
206
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Totam corrupti "dolor" quo animi "nemo" Autem aliquam non reiciendis. ')
207
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
208
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'In ab "eos" ullam aspernatur dolore dolorem pariatur repellat. ')
209
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
210
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:05', '2009-12-11 11:38:05', 'Et autem "sunt" ex temporibus. ')
211
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
212
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:05', "story_id" = 1 WHERE "id" = 2
213
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'updated title' AND "stories".id <> 1) LIMIT 1
214
+ Story Update (0.3ms) UPDATE "stories" SET "updated_at" = '2009-12-11 11:38:05', "slug" = 'updated-title', "title" = 'updated title' WHERE "id" = 1
215
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
216
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'aric.smith@kautzergoyette.name') LIMIT 1
217
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '1db56223a517b7e1a90d97188bbda21a4af48799', '2009-12-06 11:38:05', '9e79e0b28eae4dc41607936233117775d25dae4e', '2009-12-12 11:38:05', '2009-12-11 11:38:05', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'aric.smith@kautzergoyette.name')
218
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
219
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
220
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
221
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'alysson@wittingcorwin.biz') LIMIT 1
222
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '1f447e997d4e0eecade373e47157c50ebf107dc8', '2009-12-06 11:38:05', '5cb7c86c2049faadef20762d01768eec840fd6ba', '2009-12-12 11:38:05', '2009-12-11 11:38:05', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'alysson@wittingcorwin.biz')
223
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
224
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin2' AND "users".id <> 1) LIMIT 1
225
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'alysson@wittingcorwin.biz' AND "users".id <> 1) LIMIT 1
226
+ User Update (0.3ms) UPDATE "users" SET "updated_at" = '2009-12-11 11:38:05', "login" = 'quentin2' WHERE "id" = 1
227
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."login" = 'quentin2') LIMIT 1
228
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
229
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'greg@lesch.us') LIMIT 1
230
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '7117f27c306b8e4cf30db83b66a85d03a4cdaa9b', '2009-12-06 11:38:05', '6209f9aecd2a7a4135a1c0866d9f993c0c2ea697', '2009-12-12 11:38:05', '2009-12-11 11:38:05', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'greg@lesch.us')
231
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
232
+ User Update (0.2ms) UPDATE "users" SET "updated_at" = '2009-12-11 11:38:05', "remember_token" = '4a446f6bd84dcb98ecc4863fc90e6a85895fb610', "remember_token_expires_at" = '2009-12-25 11:38:05' WHERE "id" = 1
233
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
234
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'willy@harber.info') LIMIT 1
235
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'baea2cb795997eb736dd401e11282af16d2d7472', '2009-12-06 11:38:05', 'f626d75b3e7563b15973c8db9b155fa998e9f7e2', '2009-12-12 11:38:05', '2009-12-11 11:38:05', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'willy@harber.info')
236
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
237
+ User Update (0.2ms) UPDATE "users" SET "updated_at" = '2009-12-11 11:38:05', "remember_token" = 'ee6a52849edccaa1fc49652103a32f51911c7d2f', "remember_token_expires_at" = '2009-12-18 11:38:05' WHERE "id" = 1
238
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
239
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'scottie@lakinroberts.info') LIMIT 1
240
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '719d5db8c574ffbabbd3b4f7e3d21bc0ebade323', '2009-12-06 11:38:05', 'b6640e95cb0c6ac27afa238d041325a200242d0e', '2009-12-12 11:38:05', '2009-12-11 11:38:05', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'scottie@lakinroberts.info')
241
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
242
+ User Update (0.2ms) UPDATE "users" SET "updated_at" = '2009-12-11 11:38:05', "remember_token" = 'b259419ee485a7aed7b4f572c3a9189ad1ec6a3c', "remember_token_expires_at" = '2009-12-18 11:38:05' WHERE "id" = 1
243
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
244
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'marge_simonis@beahanolson.com') LIMIT 1
245
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '13fba311dac54896d85b59aa34488bd5c4239a84', '2009-12-06 11:38:05', '7c3abbc4e1e0f746453c7d4c933a547981b97f7c', '2009-12-12 11:38:05', '2009-12-11 11:38:05', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'marge_simonis@beahanolson.com')
246
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
247
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin' AND "users".id <> 1) LIMIT 1
248
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'marge_simonis@beahanolson.com' AND "users".id <> 1) LIMIT 1
249
+ User Update (0.2ms) UPDATE "users" SET "updated_at" = '2009-12-11 11:38:05', "crypted_password" = 'b90217c1fdac1f0bb8aff58337e4b9ea3453233b' WHERE "id" = 1
250
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
251
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
252
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'ben@luettgenkling.biz') LIMIT 1
253
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'f4ea6513020cc8c114fb93721ec99b1cd68701b9', '2009-12-06 11:38:05', 'cfd1b1bacd53f008e1a08c11acb781f7e7385a8b', '2009-12-12 11:38:05', '2009-12-11 11:38:05', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'ben@luettgenkling.biz')
254
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
255
+ User Update (0.2ms) UPDATE "users" SET "updated_at" = '2009-12-11 11:38:05', "remember_token" = 'fb2e65f2ecc49cf416ec4a8079475162f8b09cea', "remember_token_expires_at" = '2009-12-25 11:38:05' WHERE "id" = 1
256
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
257
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'bud.gaylord@corwin.biz') LIMIT 1
258
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'e342b9e41ab8e78345d3e03d46808e1e578a42ef', '2009-12-06 11:38:05', '578e3f4922abc50d1befce15c72e30d1bcf9e9d8', '2009-12-12 11:38:05', '2009-12-11 11:38:05', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'bud.gaylord@corwin.biz')
259
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
260
+ User Update (0.2ms) UPDATE "users" SET "updated_at" = '2009-12-11 11:38:05', "remember_token" = 'd7e985500370454faa386779296a03af469fe762', "remember_token_expires_at" = '2009-12-25 11:38:05' WHERE "id" = 1
261
+ User Update (9.2ms) UPDATE "users" SET "updated_at" = '2009-12-11 11:38:05', "remember_token" = NULL, "remember_token_expires_at" = NULL WHERE "id" = 1
262
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
263
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'fern') LIMIT 1
264
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'irving.adams@bosco.us') LIMIT 1
265
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '3839725ddd85ea869548271b9d2eb92fc8c833ae', '2009-12-11 11:38:05', 'ae542053dd3f9c7dd454795438082045f30db982', NULL, '2009-12-11 11:38:05', NULL, 'fern', 'irving.adams@bosco.us')
266
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
267
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
268
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
269
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'aric') LIMIT 1
270
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL) LIMIT 1
271
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
272
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
273
+ User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."login" IS NULL) LIMIT 1
274
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'izabella@sawaynmurazik.us') LIMIT 1
275
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "users" 
276
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "users" 
277
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'fred') LIMIT 1
278
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'nayeli_becker@ziemann.com') LIMIT 1
279
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
280
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
281
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'eliseo') LIMIT 1
282
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'fatima@jenkinsgleason.name') LIMIT 1
283
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "users" 
284
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'fern') LIMIT 1
285
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'aric.smith@kautzergoyette.name') LIMIT 1
286
+ User Create (0.4ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '90f5fea9eafcd84620b38402ca195f8bfc4d983e', '2009-12-11 11:38:08', 'dc8945c96d8e8cfb214cf1adf681bb584e333b56', NULL, '2009-12-11 11:38:08', NULL, 'fern', 'aric.smith@kautzergoyette.name')
287
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
288
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
289
+ - aut
290
+ - qui
291
+ - animi
292
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:08', '2009-12-11 11:38:08', NULL, 1, '2009-12-25 00:00:00')
293
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
294
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "iterations" 
295
+
296
+
297
+ Processing IterationsController#create (for 0.0.0.0 at 2009-12-11 11:38:08) [POST]
298
+ Parameters: {"iteration"=>{}}
299
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
300
+ Release Load (0.2ms) SELECT * FROM "releases" 
301
+ Rendering template within layouts/main
302
+ Rendering iterations/new
303
+ Rendered iterations/_form (11.9ms)
304
+ Rendered layouts/_meta (0.5ms)
305
+ Rendered layouts/_header (1.2ms)
306
+ Rendered layouts/_footer (0.5ms)
307
+ Completed in 38ms (View: 29, DB: 3) | 200 OK [http://test.host/iterations?]
308
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "iterations" 
309
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'aric') LIMIT 1
310
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'alysson@wittingcorwin.biz') LIMIT 1
311
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'de6d5b378594b4ce34823ff106f01c14d1ccd4ad', '2009-12-11 11:38:08', '962e6085a95d3e9107943144c88146965b68df03', NULL, '2009-12-11 11:38:08', NULL, 'aric', 'alysson@wittingcorwin.biz')
312
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
313
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
314
+ - consequatur
315
+ - dolor
316
+ - a
317
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:08', '2009-12-11 11:38:08', NULL, 1, '2009-12-25 00:00:00')
318
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
319
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "iterations" 
320
+
321
+
322
+ Processing IterationsController#create (for 0.0.0.0 at 2009-12-11 11:38:08) [POST]
323
+ Parameters: {"iteration"=>{}}
324
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
325
+ Release Load (0.2ms) SELECT * FROM "releases" 
326
+ Rendering template within layouts/main
327
+ Rendering iterations/new
328
+ Rendered iterations/_form (10.3ms)
329
+ Rendered layouts/_meta (0.1ms)
330
+ Rendered layouts/_header (0.3ms)
331
+ Rendered layouts/_footer (0.2ms)
332
+ Completed in 25ms (View: 22, DB: 3) | 200 OK [http://test.host/iterations?]
333
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "iterations" 
334
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'fred') LIMIT 1
335
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'greg@lesch.us') LIMIT 1
336
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '4f247d9fe93b351ca5ef41cc62a55d38c7f0d70d', '2009-12-11 11:38:08', '891ed65c3ce486df932c1f197639fb356ce4f01c', NULL, '2009-12-11 11:38:08', NULL, 'fred', 'greg@lesch.us')
337
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
338
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
339
+ - est
340
+ - quisquam
341
+ - quis
342
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:08', '2009-12-11 11:38:08', NULL, 1, '2009-12-25 00:00:00')
343
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
344
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "iterations" 
345
+
346
+
347
+ Processing IterationsController#create (for 0.0.0.0 at 2009-12-11 11:38:08) [POST]
348
+ Parameters: {"iteration"=>{"name"=>["aliquam", "architecto", "fugiat"], "start_date"=>Fri, 11 Dec 2009, "velocity"=>1, "end_date"=>Fri, 25 Dec 2009}}
349
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
350
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
351
+ - aliquam
352
+ - architecto
353
+ - fugiat
354
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:08', '2009-12-11 11:38:08', NULL, 1, '2009-12-25 00:00:00')
355
+ Redirected to http://test.host/iterations
356
+ Completed in 7ms (DB: 3) | 302 Found [http://test.host/iterations?iteration%5Bend_date%5D=2009-12-25&iteration%5Bname%5D%5B%5D=aliquam&iteration%5Bname%5D%5B%5D=architecto&iteration%5Bname%5D%5B%5D=fugiat&iteration%5Bstart_date%5D=2009-12-11&iteration%5Bvelocity%5D=1]
357
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "iterations" 
358
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "iterations" 
359
+ Release Create (0.2ms) INSERT INTO "releases" ("created_at", "notes", "updated_at", "release_date") VALUES('2009-12-11 11:38:08', '---
360
+ - Vel voluptate aliquid et doloribus sint eum ad sequi.
361
+ - Alias omnis tenetur assumenda eligendi nisi.
362
+ - Voluptas quo minima sapiente voluptatibus sit.
363
+ ', '2009-12-11 11:38:08', '2009-12-31')
364
+ Release Load (0.3ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
365
+
366
+
367
+ Processing IterationsController#create (for 0.0.0.0 at 2009-12-11 11:38:08) [POST]
368
+ Parameters: {"iteration"=>{"start_date"=>Fri, 11 Dec 2009, "name"=>["reiciendis", "molestiae", "dolores"], "release_id"=>"1", "velocity"=>1, "end_date"=>Fri, 25 Dec 2009}}
369
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
370
+ - reiciendis
371
+ - molestiae
372
+ - dolores
373
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:08', '2009-12-11 11:38:08', 1, 1, '2009-12-25 00:00:00')
374
+ Redirected to http://test.host/iterations
375
+ Completed in 5ms (DB: 1) | 302 Found [http://test.host/iterations?iteration%5Bend_date%5D=2009-12-25&iteration%5Bname%5D%5B%5D=aliquam&iteration%5Bname%5D%5B%5D=architecto&iteration%5Bname%5D%5B%5D=fugiat&iteration%5Bstart_date%5D=2009-12-11&iteration%5Bvelocity%5D=1]
376
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "iterations" 
377
+ Release Load (0.4ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
378
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'eliseo') LIMIT 1
379
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'willy@harber.info') LIMIT 1
380
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'de333b8080ff31406add539805b240f6d6c90d9f', '2009-12-11 11:38:08', '3e18570d20f458a96422ec3b10f62237acaaaaa5', NULL, '2009-12-11 11:38:08', NULL, 'eliseo', 'willy@harber.info')
381
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
382
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
383
+ - iusto
384
+ - nihil
385
+ - sequi
386
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:08', '2009-12-11 11:38:08', NULL, 1, '2009-12-25 00:00:00')
387
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
388
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "iterations" 
389
+
390
+
391
+ Processing IterationsController#create (for 0.0.0.0 at 2009-12-11 11:38:08) [POST]
392
+ Parameters: {"iteration"=>{"name"=>["molestiae", "velit", "dolores"], "start_date"=>Fri, 11 Dec 2009, "velocity"=>1, "end_date"=>Fri, 25 Dec 2009}}
393
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
394
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
395
+ - molestiae
396
+ - velit
397
+ - dolores
398
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:08', '2009-12-11 11:38:08', NULL, 1, '2009-12-25 00:00:00')
399
+ Redirected to http://test.host/iterations
400
+ Completed in 7ms (DB: 4) | 302 Found [http://test.host/iterations?iteration%5Bend_date%5D=2009-12-25&iteration%5Bname%5D%5B%5D=molestiae&iteration%5Bname%5D%5B%5D=velit&iteration%5Bname%5D%5B%5D=dolores&iteration%5Bstart_date%5D=2009-12-11&iteration%5Bvelocity%5D=1]
401
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "iterations" 
402
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'tess') LIMIT 1
403
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'scottie@lakinroberts.info') LIMIT 1
404
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '47e30e4140fc51a1b6ee1f365ccd3bf95069624d', '2009-12-11 11:38:08', '653838aeffe7a31a6568e138e42a8adfe6fd443b', NULL, '2009-12-11 11:38:08', NULL, 'tess', 'scottie@lakinroberts.info')
405
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
406
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
407
+ - quia
408
+ - aliquam
409
+ - minus
410
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:08', '2009-12-11 11:38:08', NULL, 1, '2009-12-25 00:00:00')
411
+ Iteration Load (0.8ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
412
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "iterations" 
413
+
414
+
415
+ Processing IterationsController#create (for 0.0.0.0 at 2009-12-11 11:38:08) [POST]
416
+ Parameters: {"iteration"=>{"name"=>["error", "hic", "dolorum"], "start_date"=>Fri, 11 Dec 2009, "velocity"=>1, "end_date"=>Fri, 25 Dec 2009}}
417
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
418
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
419
+ - error
420
+ - hic
421
+ - dolorum
422
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:08', '2009-12-11 11:38:08', NULL, 1, '2009-12-25 00:00:00')
423
+ Redirected to http://test.host/iterations
424
+ Completed in 7ms (DB: 3) | 302 Found [http://test.host/iterations?iteration%5Bend_date%5D=2009-12-25&iteration%5Bname%5D%5B%5D=error&iteration%5Bname%5D%5B%5D=hic&iteration%5Bname%5D%5B%5D=dolorum&iteration%5Bstart_date%5D=2009-12-11&iteration%5Bvelocity%5D=1]
425
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "iterations" 
426
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'vincent') LIMIT 1
427
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'marge_simonis@beahanolson.com') LIMIT 1
428
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '0a1609b78dee261335e822a02dd36fa5f6eb07c1', '2009-12-11 11:38:08', '888a059e2d3cdec94b4970ecac6eb877991460a7', NULL, '2009-12-11 11:38:08', NULL, 'vincent', 'marge_simonis@beahanolson.com')
429
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
430
+ Iteration Create (0.3ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
431
+ - et
432
+ - fugit
433
+ - quisquam
434
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:08', '2009-12-11 11:38:08', NULL, 1, '2009-12-25 00:00:00')
435
+ Iteration Load (0.6ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
436
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "iterations" 
437
+
438
+
439
+ Processing IterationsController#destroy (for 0.0.0.0 at 2009-12-11 11:38:08) [DELETE]
440
+ Parameters: {"id"=>"1"}
441
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
442
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
443
+ Iteration Destroy (0.1ms) DELETE FROM "iterations" WHERE "id" = 1
444
+ Redirected to http://test.host/iterations
445
+ Completed in 4ms (DB: 4) | 302 Found [http://test.host/iterations/1]
446
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "iterations" 
447
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'emmanuel') LIMIT 1
448
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'ben@luettgenkling.biz') LIMIT 1
449
+ User Create (0.6ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '4e875b3a6cbca79ea45836ed095d456c286ef83e', '2009-12-11 11:38:08', 'de8aa5d59c21eb62974f04b55ca1464b0f9c313f', NULL, '2009-12-11 11:38:08', NULL, 'emmanuel', 'ben@luettgenkling.biz')
450
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
451
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
452
+ - odio
453
+ - qui
454
+ - et
455
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:08', '2009-12-11 11:38:08', NULL, 1, '2009-12-25 00:00:00')
456
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
457
+
458
+
459
+ Processing IterationsController#edit (for 0.0.0.0 at 2009-12-11 11:38:08) [GET]
460
+ Parameters: {"id"=>"1"}
461
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
462
+ Release Load (0.1ms) SELECT * FROM "releases" 
463
+ Release Load (0.1ms) SELECT * FROM "releases" 
464
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
465
+ Rendering template within layouts/main
466
+ Rendering iterations/edit
467
+ Rendered iterations/_form (7.2ms)
468
+ Rendered layouts/_meta (0.1ms)
469
+ Rendered layouts/_header (0.2ms)
470
+ Rendered layouts/_footer (0.1ms)
471
+ Completed in 21ms (View: 17, DB: 3) | 200 OK [http://test.host/iterations/1/edit]
472
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'alysson') LIMIT 1
473
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'bud.gaylord@corwin.biz') LIMIT 1
474
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '7222cc27cc8692076af8e50249df1a9a56572381', '2009-12-11 11:38:08', 'c8c5ee86c75185f4df16466017ff8f88a9176960', NULL, '2009-12-11 11:38:08', NULL, 'alysson', 'bud.gaylord@corwin.biz')
475
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
476
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
477
+ - eligendi
478
+ - omnis
479
+ - odio
480
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:08', '2009-12-11 11:38:08', NULL, 1, '2009-12-25 00:00:00')
481
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
482
+
483
+
484
+ Processing IterationsController#index (for 0.0.0.0 at 2009-12-11 11:38:08) [GET]
485
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
486
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
487
+ Rendering template within layouts/main
488
+ Rendering iterations/index
489
+ Rendered layouts/_meta (0.1ms)
490
+ Rendered layouts/_header (0.2ms)
491
+ Rendered layouts/_footer (0.1ms)
492
+ Completed in 18ms (View: 15, DB: 3) | 200 OK [http://test.host/iterations]
493
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'alphonso') LIMIT 1
494
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'irving.adams@bosco.us') LIMIT 1
495
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '04282d61367e53d50a6df9a09c4355ab66508ddd', '2009-12-11 11:38:08', 'a3da794a6d4d28fc3d833e9b288d9e7cd5a5c295', NULL, '2009-12-11 11:38:08', NULL, 'alphonso', 'irving.adams@bosco.us')
496
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
497
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
498
+ - magni
499
+ - culpa
500
+ - ut
501
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:08', '2009-12-11 11:38:08', NULL, 1, '2009-12-25 00:00:00')
502
+ Iteration Load (0.5ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
503
+
504
+
505
+ Processing IterationsController#new (for 0.0.0.0 at 2009-12-11 11:38:08) [GET]
506
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
507
+ Release Load (0.1ms) SELECT * FROM "releases" 
508
+ Release Load (0.1ms) SELECT * FROM "releases" 
509
+ Rendering template within layouts/main
510
+ Rendering iterations/new
511
+ Rendered iterations/_form (6.4ms)
512
+ Rendered layouts/_meta (0.1ms)
513
+ Rendered layouts/_header (0.2ms)
514
+ Rendered layouts/_footer (0.1ms)
515
+ Completed in 17ms (View: 13, DB: 3) | 200 OK [http://test.host/iterations/new]
516
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'tom') LIMIT 1
517
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'izabella@sawaynmurazik.us') LIMIT 1
518
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '2311ef68685e05537669bb10bd6922bdd81f66b0', '2009-12-11 11:38:09', '0e4849018d8ba491949ee0780a07dce5e401eb2f', NULL, '2009-12-11 11:38:09', NULL, 'tom', 'izabella@sawaynmurazik.us')
519
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
520
+ Iteration Create (0.3ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
521
+ - et
522
+ - ut
523
+ - suscipit
524
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:09', '2009-12-11 11:38:09', NULL, 1, '2009-12-25 00:00:00')
525
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
526
+
527
+
528
+ Processing IterationsController#show (for 0.0.0.0 at 2009-12-11 11:38:09) [GET]
529
+ Parameters: {"id"=>"1"}
530
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
531
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
532
+ Rendering template within layouts/main
533
+ Rendering iterations/show
534
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ("stories".iteration_id = 1) 
535
+ Rendered layouts/_meta (0.1ms)
536
+ Rendered layouts/_header (0.3ms)
537
+ Rendered layouts/_footer (0.1ms)
538
+ Completed in 15ms (View: 12, DB: 3) | 200 OK [http://test.host/iterations/1]
539
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'rossie') LIMIT 1
540
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'nayeli_becker@ziemann.com') LIMIT 1
541
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '4bbb6d26603ca5b3bfbfce757cb4273689b06a38', '2009-12-11 11:38:09', '1c54374bd3e67f0ed7eff82b63e989a0ca304151', NULL, '2009-12-11 11:38:09', NULL, 'rossie', 'nayeli_becker@ziemann.com')
542
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
543
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
544
+ - blanditiis
545
+ - facilis
546
+ - ex
547
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:09', '2009-12-11 11:38:09', NULL, 1, '2009-12-25 00:00:00')
548
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
549
+
550
+
551
+ Processing IterationsController#update (for 0.0.0.0 at 2009-12-11 11:38:09) [PUT]
552
+ Parameters: {"iteration"=>{"name"=>""}, "id"=>"1"}
553
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
554
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
555
+ Release Load (0.2ms) SELECT * FROM "releases" 
556
+ Rendering template within layouts/main
557
+ Rendering iterations/edit
558
+ Rendered iterations/_form (9.0ms)
559
+ Rendered layouts/_meta (0.1ms)
560
+ Rendered layouts/_header (0.3ms)
561
+ Rendered layouts/_footer (0.1ms)
562
+ Completed in 25ms (View: 20, DB: 3) | 200 OK [http://test.host/iterations/1?iteration%5Bname%5D=]
563
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'greg') LIMIT 1
564
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'fatima@jenkinsgleason.name') LIMIT 1
565
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '6f12274d099c873ed5ffdd49bf9d4ade465005ee', '2009-12-11 11:38:09', '324a7cbf0f95e4900ab6bf56d0be26ee5f057bf6', NULL, '2009-12-11 11:38:09', NULL, 'greg', 'fatima@jenkinsgleason.name')
566
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
567
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
568
+ - repudiandae
569
+ - in
570
+ - non
571
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:09', '2009-12-11 11:38:09', NULL, 1, '2009-12-25 00:00:00')
572
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
573
+
574
+
575
+ Processing IterationsController#update (for 0.0.0.0 at 2009-12-11 11:38:09) [PUT]
576
+ Parameters: {"iteration"=>{"name"=>""}, "id"=>"1"}
577
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
578
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
579
+ Release Load (0.1ms) SELECT * FROM "releases" 
580
+ Rendering template within layouts/main
581
+ Rendering iterations/edit
582
+ Rendered iterations/_form (90.5ms)
583
+ Rendered layouts/_meta (0.1ms)
584
+ Rendered layouts/_header (0.3ms)
585
+ Rendered layouts/_footer (0.1ms)
586
+ Completed in 107ms (View: 102, DB: 3) | 200 OK [http://test.host/iterations/1?iteration%5Bname%5D=]
587
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'hollis') LIMIT 1
588
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'amely_towne@grant.us') LIMIT 1
589
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'ef8d7f710a4efc7cef1446fbc3db85377c2a3529', '2009-12-11 11:38:09', '8f413763adba9ea5fbed638e3cca0057f491cb6c', NULL, '2009-12-11 11:38:09', NULL, 'hollis', 'amely_towne@grant.us')
590
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
591
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
592
+ - nostrum
593
+ - et
594
+ - dolores
595
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:09', '2009-12-11 11:38:09', NULL, 1, '2009-12-25 00:00:00')
596
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
597
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "iterations" 
598
+
599
+
600
+ Processing IterationsController#update (for 0.0.0.0 at 2009-12-11 11:38:09) [PUT]
601
+ Parameters: {"iteration"=>{"name"=>"bar"}, "id"=>"1"}
602
+ User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
603
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
604
+ Iteration Update (0.2ms) UPDATE "iterations" SET "updated_at" = '2009-12-11 11:38:09', "name" = 'bar' WHERE "id" = 1
605
+ Redirected to http://test.host/iterations
606
+ Completed in 7ms (DB: 3) | 302 Found [http://test.host/iterations/1?iteration%5Bname%5D=bar]
607
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "iterations" 
608
+ Release Create (0.2ms) INSERT INTO "releases" ("created_at", "notes", "updated_at", "release_date") VALUES('2009-12-11 11:38:09', '---
609
+ - Iusto est architecto dolorum omnis provident.
610
+ - Delectus esse atque odit quos et.
611
+ - Quia omnis molestiae voluptatem.
612
+ ', '2009-12-11 11:38:09', '2009-12-31')
613
+ Release Load (0.3ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
614
+
615
+
616
+ Processing IterationsController#update (for 0.0.0.0 at 2009-12-11 11:38:09) [PUT]
617
+ Parameters: {"iteration"=>{"release_id"=>"1"}, "id"=>"1"}
618
+ Iteration Load (0.5ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
619
+ Iteration Update (0.2ms) UPDATE "iterations" SET "updated_at" = '2009-12-11 11:38:09', "release_id" = 1 WHERE "id" = 1
620
+ Redirected to http://test.host/iterations
621
+ Completed in 5ms (DB: 1) | 302 Found [http://test.host/iterations/1?iteration%5Bname%5D=bar]
622
+ Release Load (0.4ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
623
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'hermann') LIMIT 1
624
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'keaton_kuvalis@willmslangosh.ca') LIMIT 1
625
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '665544939297992419806608d55fb4db9e573c17', '2009-12-11 11:38:09', 'ea060d2506a07779873f6baf648b50f353b7b41d', NULL, '2009-12-11 11:38:09', NULL, 'hermann', 'keaton_kuvalis@willmslangosh.ca')
626
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
627
+ Iteration Create (0.2ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
628
+ - tempora
629
+ - amet
630
+ - veniam
631
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:09', '2009-12-11 11:38:09', NULL, 1, '2009-12-25 00:00:00')
632
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
633
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "iterations" 
634
+
635
+
636
+ Processing IterationsController#update (for 0.0.0.0 at 2009-12-11 11:38:09) [PUT]
637
+ Parameters: {"iteration"=>{"name"=>"bar"}, "id"=>"1"}
638
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
639
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
640
+ Iteration Update (0.2ms) UPDATE "iterations" SET "updated_at" = '2009-12-11 11:38:09', "name" = 'bar' WHERE "id" = 1
641
+ Redirected to http://test.host/iterations
642
+ Completed in 7ms (DB: 4) | 302 Found [http://test.host/iterations/1?iteration%5Bname%5D=bar]
643
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "iterations" 
644
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'blair') LIMIT 1
645
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'guido@thiel.name') LIMIT 1
646
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'd40ee405d08cf8db33b306990a43c13b1e66972d', '2009-12-11 11:38:09', '49a58001815c214515e521ef9f0aac5c04cdf0e5', NULL, '2009-12-11 11:38:09', NULL, 'blair', 'guido@thiel.name')
647
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
648
+
649
+
650
+ Processing IterationsController#index (for 0.0.0.0 at 2009-12-11 11:38:09) [GET]
651
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
652
+ Iteration Load (0.1ms) SELECT * FROM "iterations" 
653
+ Rendering template within layouts/main
654
+ Rendering iterations/index
655
+ Rendered layouts/_meta (0.1ms)
656
+ Rendered layouts/_header (0.2ms)
657
+ Rendered layouts/_footer (0.1ms)
658
+ Completed in 8ms (View: 6, DB: 2) | 200 OK [http://test.host/iterations]
659
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'winnifred') LIMIT 1
660
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'jalon_prosacco@lemke.info') LIMIT 1
661
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '37601e6ef6e30cd05b7c78184b798a9fa1a6e7da', '2009-12-11 11:38:09', '25167ece361cf171bb53cf0747231cadede023a2', NULL, '2009-12-11 11:38:09', NULL, 'winnifred', 'jalon_prosacco@lemke.info')
662
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
663
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Alias omnis tenetur assumenda eligendi n') LIMIT 1
664
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('alias-omnis-tenetur-assumenda-eligendi-nisi', '2009-12-11 11:38:09', 'Alias omnis tenetur assumenda eligendi nisi.', '2009-12-11 11:38:09', 2, 'Vel voluptate "aliquid" et doloribus sint eum ad sequi. ', NULL, NULL)
665
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
666
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:09', 'Vel voluptate aliquid et doloribus sint eum ad sequi.', '2009-12-11 11:38:09', 1)
667
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
668
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:09', '2009-12-11 11:38:09', 'Alias omnis "tenetur" assumenda eligendi nisi. ')
669
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
670
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "outcomes" 
671
+
672
+
673
+ Processing OutcomesController#create (for 0.0.0.0 at 2009-12-11 11:38:09) [POST]
674
+ Parameters: {"outcome"=>{}, "scenario_id"=>"1"}
675
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
676
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
677
+ Rendering template within layouts/outcomes
678
+ Rendering outcomes/new
679
+ Completed in 15ms (View: 7, DB: 4) | 200 OK [http://test.host/outcomes?&scenario_id=1]
680
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "outcomes" 
681
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'roderick') LIMIT 1
682
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'carli@abshire.uk') LIMIT 1
683
+ User Create (0.4ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '5e9d1004fdf48cc03cdd6c05402eb344dce97aa0', '2009-12-11 11:38:09', 'bfbc8fa8ce371f60bdec5e5036ed379d4064dd70', NULL, '2009-12-11 11:38:09', NULL, 'roderick', 'carli@abshire.uk')
684
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
685
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Iusto est architecto dolorum omnis provi') LIMIT 1
686
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('iusto-est-architecto-dolorum-omnis-provident', '2009-12-11 11:38:09', 'Iusto est architecto dolorum omnis provident.', '2009-12-11 11:38:09', 2, 'Voluptas quo "minima" sapiente voluptatibus sit. ', NULL, NULL)
687
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
688
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:09', 'Voluptas quo minima sapiente voluptatibus sit.', '2009-12-11 11:38:09', 1)
689
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
690
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:09', '2009-12-11 11:38:09', 'Iusto est "architecto" dolorum omnis provident. ')
691
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
692
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "outcomes" 
693
+
694
+
695
+ Processing OutcomesController#create (for 0.0.0.0 at 2009-12-11 11:38:09) [POST]
696
+ Parameters: {"outcome"=>{"description"=>"Foo"}, "scenario_id"=>"1"}
697
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
698
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
699
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:09', '2009-12-11 11:38:09', 'Foo')
700
+ Redirected to http://test.host/outcomes/2
701
+ Completed in 7ms (DB: 4) | 302 Found [http://test.host/outcomes?outcome%5Bdescription%5D=Foo&scenario_id=1]
702
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "outcomes" 
703
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'willy') LIMIT 1
704
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'mekhi_johnston@bosco.info') LIMIT 1
705
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'ecf41f8427e08b0fb1cc530e434b23d40dd04e87', '2009-12-11 11:38:09', '36e584c7007cc106e5298899e9b4c63437a852a9', NULL, '2009-12-11 11:38:09', NULL, 'willy', 'mekhi_johnston@bosco.info')
706
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
707
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Quia omnis molestiae voluptatem.') LIMIT 1
708
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('quia-omnis-molestiae-voluptatem', '2009-12-11 11:38:09', 'Quia omnis molestiae voluptatem.', '2009-12-11 11:38:09', 2, 'Delectus esse "atque" odit quos et. ', NULL, NULL)
709
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
710
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:09', 'Delectus esse atque odit quos et.', '2009-12-11 11:38:09', 1)
711
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
712
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:09', '2009-12-11 11:38:09', 'Quia omnis "molestiae" voluptatem. ')
713
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
714
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "outcomes" 
715
+
716
+
717
+ Processing OutcomesController#destroy (for 0.0.0.0 at 2009-12-11 11:38:09) [DELETE]
718
+ Parameters: {"id"=>"1"}
719
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
720
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
721
+ Outcome Destroy (0.1ms) DELETE FROM "outcomes" WHERE "id" = 1
722
+ Redirected to http://test.host/outcomes
723
+ Completed in 4ms (DB: 4) | 302 Found [http://test.host/outcomes/1]
724
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "outcomes" 
725
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'art') LIMIT 1
726
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'effie@wilkinsoncartwright.co.uk') LIMIT 1
727
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '846bae0b1a13db832f9cefa3791963356b6e4090', '2009-12-11 11:38:09', '3de981e40289685666bbbdcb4f1fee43b1cf9cc4', NULL, '2009-12-11 11:38:09', NULL, 'art', 'effie@wilkinsoncartwright.co.uk')
728
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
729
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Totam vero explicabo eligendi voluptas a') LIMIT 1
730
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('totam-vero-explicabo-eligendi-voluptas-amet-voluptate-voluptas-ut', '2009-12-11 11:38:09', 'Totam vero explicabo eligendi voluptas amet voluptate voluptas ut.', '2009-12-11 11:38:09', 2, 'Velit sit "sed" consequuntur. ', NULL, NULL)
731
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
732
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:09', 'Velit sit sed consequuntur.', '2009-12-11 11:38:09', 1)
733
+ Scenario Load (0.4ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
734
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:09', '2009-12-11 11:38:09', 'Totam vero "explicabo" eligendi voluptas amet voluptate voluptas ut. ')
735
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
736
+
737
+
738
+ Processing OutcomesController#edit (for 0.0.0.0 at 2009-12-11 11:38:09) [GET]
739
+ Parameters: {"scenario_id"=>"1", "id"=>"1"}
740
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
741
+ Scenario Load (0.4ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
742
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
743
+ Rendering template within layouts/outcomes
744
+ Rendering outcomes/edit
745
+ Completed in 8ms (View: 5, DB: 4) | 200 OK [http://test.host/outcomes/1/edit?scenario_id=1]
746
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'dameon') LIMIT 1
747
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'nettie@mante.name') LIMIT 1
748
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '708cb4e7d0ddf960454ea628443dfa3256b2723f', '2009-12-11 11:38:09', '9dd5a4b0e39e461bf5791f2a601e075e20f3e18e', NULL, '2009-12-11 11:38:09', NULL, 'dameon', 'nettie@mante.name')
749
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
750
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Consequuntur temporibus optio iste.') LIMIT 1
751
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('consequuntur-temporibus-optio-iste', '2009-12-11 11:38:09', 'Consequuntur temporibus optio iste.', '2009-12-11 11:38:09', 2, 'Perspiciatis non "animi" rerum quisquam et. ', NULL, NULL)
752
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
753
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:09', 'Perspiciatis non animi rerum quisquam et.', '2009-12-11 11:38:09', 1)
754
+ Scenario Load (0.4ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
755
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:09', '2009-12-11 11:38:09', 'Consequuntur temporibus "optio" iste. ')
756
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
757
+
758
+
759
+ Processing OutcomesController#new (for 0.0.0.0 at 2009-12-11 11:38:09) [GET]
760
+ Parameters: {"scenario_id"=>"1"}
761
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
762
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
763
+ Rendering template within layouts/outcomes
764
+ Rendering outcomes/new
765
+ Completed in 122ms (View: 6, DB: 4) | 200 OK [http://test.host/outcomes/new?scenario_id=1]
766
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'raphaelle') LIMIT 1
767
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'vincenzo@hammeskassulke.ca') LIMIT 1
768
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '0483ec61d480accbd67f622725afa7033179f6ad', '2009-12-11 11:38:09', '0f315f12615f9bbf5ee2007ee52d41df3b3a9e7e', NULL, '2009-12-11 11:38:09', NULL, 'raphaelle', 'vincenzo@hammeskassulke.ca')
769
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
770
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Voluptatem omnis blanditiis enim.') LIMIT 1
771
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('voluptatem-omnis-blanditiis-enim', '2009-12-11 11:38:09', 'Voluptatem omnis blanditiis enim.', '2009-12-11 11:38:09', 2, 'Esse quis "deserunt" minima sit voluptas. ', NULL, NULL)
772
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
773
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:09', 'Esse quis deserunt minima sit voluptas.', '2009-12-11 11:38:09', 1)
774
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
775
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:09', '2009-12-11 11:38:09', 'Voluptatem omnis "blanditiis" enim. ')
776
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
777
+
778
+
779
+ Processing OutcomesController#index (for 0.0.0.0 at 2009-12-11 11:38:09) [GET]
780
+ Parameters: {"scenario_id"=>"1"}
781
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
782
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
783
+ Rendering template within layouts/outcomes
784
+ Rendering outcomes/index
785
+ Outcome Load (0.2ms) SELECT * FROM "outcomes" WHERE ("outcomes".scenario_id = 1) 
786
+ Completed in 6ms (View: 3, DB: 4) | 200 OK [http://test.host/outcomes?scenario_id=1]
787
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'cicero') LIMIT 1
788
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'reed@jaskolski.ca') LIMIT 1
789
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'eb662a7c15444699d946d05a22d3b7486788c66f', '2009-12-11 11:38:09', '12a65aede98e6da5a89887ca9ad813a780f426c2', NULL, '2009-12-11 11:38:09', NULL, 'cicero', 'reed@jaskolski.ca')
790
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
791
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Et aut voluptas eius deserunt dolor.') LIMIT 1
792
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('et-aut-voluptas-eius-deserunt-dolor', '2009-12-11 11:38:09', 'Et aut voluptas eius deserunt dolor.', '2009-12-11 11:38:09', 2, 'Aut omnis "quia" earum et corporis nobis iure. ', NULL, NULL)
793
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
794
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:09', 'Aut omnis quia earum et corporis nobis iure.', '2009-12-11 11:38:09', 1)
795
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
796
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:09', '2009-12-11 11:38:09', 'Et aut "voluptas" eius deserunt dolor. ')
797
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
798
+
799
+
800
+ Processing OutcomesController#show (for 0.0.0.0 at 2009-12-11 11:38:09) [GET]
801
+ Parameters: {"scenario_id"=>"1", "id"=>"1"}
802
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
803
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
804
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
805
+ Rendering template within layouts/outcomes
806
+ Rendering outcomes/show
807
+ Completed in 6ms (View: 2, DB: 4) | 200 OK [http://test.host/outcomes/1?scenario_id=1]
808
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'scottie') LIMIT 1
809
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'ambrose_ratke@goodwinkoepp.name') LIMIT 1
810
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'f88828a19863d97892857fdeedcd9c95cea9118d', '2009-12-11 11:38:09', 'd1d1d54dc7b5092dcfd13f12989ca2785755f088', NULL, '2009-12-11 11:38:09', NULL, 'scottie', 'ambrose_ratke@goodwinkoepp.name')
811
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
812
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Omnis vitae maiores ad.') LIMIT 1
813
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('omnis-vitae-maiores-ad', '2009-12-11 11:38:09', 'Omnis vitae maiores ad.', '2009-12-11 11:38:09', 2, 'Quam est "voluptatem" nihil. ', NULL, NULL)
814
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
815
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:09', 'Quam est voluptatem nihil.', '2009-12-11 11:38:09', 1)
816
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
817
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:10', '2009-12-11 11:38:10', 'Omnis vitae "maiores" ad. ')
818
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
819
+
820
+
821
+ Processing OutcomesController#update (for 0.0.0.0 at 2009-12-11 11:38:10) [PUT]
822
+ Parameters: {"outcome"=>{}, "scenario_id"=>"1", "id"=>"1"}
823
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
824
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
825
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
826
+ Redirected to http://test.host/outcomes/1
827
+ Completed in 6ms (DB: 4) | 302 Found [http://test.host/outcomes/1?&scenario_id=1]
828
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'demarcus') LIMIT 1
829
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'ashton@roberts.info') LIMIT 1
830
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '35e1fdc9b113545263ac66312e1fdc85e6bbcc65', '2009-12-11 11:38:10', '1ea99923cb629dc0c55d953ba545513df65b9c80', NULL, '2009-12-11 11:38:10', NULL, 'demarcus', 'ashton@roberts.info')
831
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
832
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Alias voluptate neque qui nostrum.') LIMIT 1
833
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('alias-voluptate-neque-qui-nostrum', '2009-12-11 11:38:10', 'Alias voluptate neque qui nostrum.', '2009-12-11 11:38:10', 2, 'Magnam officia "blanditiis" recusandae temporibus et amet eaque adipisci. ', NULL, NULL)
834
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
835
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:10', 'Magnam officia blanditiis recusandae temporibus et amet eaque adipisci.', '2009-12-11 11:38:10', 1)
836
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
837
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:10', '2009-12-11 11:38:10', 'Alias voluptate "neque" qui nostrum. ')
838
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
839
+
840
+
841
+ Processing OutcomesController#update (for 0.0.0.0 at 2009-12-11 11:38:10) [PUT]
842
+ Parameters: {"outcome"=>{"description"=>""}, "scenario_id"=>"1", "id"=>"1"}
843
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
844
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
845
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
846
+ Rendering template within layouts/outcomes
847
+ Rendering outcomes/edit
848
+ Completed in 11ms (View: 6, DB: 4) | 200 OK [http://test.host/outcomes/1?outcome%5Bdescription%5D=&scenario_id=1]
849
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'joesph') LIMIT 1
850
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'bernardo@buckridge.biz') LIMIT 1
851
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'a9f6ea08c8ea12d25397288f20be4acd9057df28', '2009-12-11 11:38:10', '17dc5456aade733b4b5e54e6dd55159dab2fc723', NULL, '2009-12-11 11:38:10', NULL, 'joesph', 'bernardo@buckridge.biz')
852
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
853
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Et voluptatum sint nesciunt voluptate qu') LIMIT 1
854
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('et-voluptatum-sint-nesciunt-voluptate-qui-rerum-est', '2009-12-11 11:38:10', 'Et voluptatum sint nesciunt voluptate qui rerum est.', '2009-12-11 11:38:10', 2, 'Accusantium voluptatum "rerum" eos hic. ', NULL, NULL)
855
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
856
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:10', 'Accusantium voluptatum rerum eos hic.', '2009-12-11 11:38:10', 1)
857
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
858
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:10', '2009-12-11 11:38:10', 'Et voluptatum "sint" nesciunt voluptate qui rerum est. ')
859
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
860
+
861
+
862
+ Processing OutcomesController#update (for 0.0.0.0 at 2009-12-11 11:38:10) [PUT]
863
+ Parameters: {"outcome"=>{"description"=>"bar"}, "scenario_id"=>"1", "id"=>"1"}
864
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
865
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
866
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
867
+ Outcome Update (0.2ms) UPDATE "outcomes" SET "updated_at" = '2009-12-11 11:38:10', "description" = 'bar' WHERE "id" = 1
868
+ Redirected to http://test.host/outcomes/1
869
+ Completed in 7ms (DB: 4) | 302 Found [http://test.host/outcomes/1?outcome%5Bdescription%5D=bar&scenario_id=1]
870
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'lizzie') LIMIT 1
871
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'myrl.baumbach@mcglynn.biz') LIMIT 1
872
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'eddbf3b531a59863e71086011e6c490f9c88c4e3', '2009-12-11 11:38:10', '74dbbdc6d0a59bc9865be89aa60d4e34f9c13be7', NULL, '2009-12-11 11:38:10', NULL, 'lizzie', 'myrl.baumbach@mcglynn.biz')
873
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
874
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Voluptates tempora atque quis.') LIMIT 1
875
+ Story Create (0.4ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('voluptates-tempora-atque-quis', '2009-12-11 11:38:10', 'Voluptates tempora atque quis.', '2009-12-11 11:38:10', 2, 'Molestiae quia "vitae" quos. ', NULL, NULL)
876
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
877
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:10', 'Molestiae quia vitae quos.', '2009-12-11 11:38:10', 1)
878
+ Scenario Load (0.4ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
879
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:10', '2009-12-11 11:38:10', 'Voluptates tempora "atque" quis. ')
880
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
881
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "preconditions" 
882
+
883
+
884
+ Processing PreconditionsController#create (for 0.0.0.0 at 2009-12-11 11:38:10) [POST]
885
+ Parameters: {"scenario_id"=>"1", "precondition"=>{}}
886
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
887
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
888
+ Rendering template within layouts/main
889
+ Rendering preconditions/new
890
+ Rendered layouts/_meta (0.1ms)
891
+ Rendered layouts/_header (0.3ms)
892
+ Rendered layouts/_footer (0.1ms)
893
+ Completed in 23ms (View: 14, DB: 4) | 200 OK [http://test.host/preconditions?&scenario_id=1]
894
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "preconditions" 
895
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'frieda') LIMIT 1
896
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'sidney_dubuque@bahringer.name') LIMIT 1
897
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'eac9b03ce27edfc51e90e7e431a3765760cfb55b', '2009-12-11 11:38:10', '4fe3bcdc8c1ad1e8524fd04f3b7b940d7d834f84', NULL, '2009-12-11 11:38:10', NULL, 'frieda', 'sidney_dubuque@bahringer.name')
898
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
899
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Autem aliquam non reiciendis.') LIMIT 1
900
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('autem-aliquam-non-reiciendis', '2009-12-11 11:38:10', 'Autem aliquam non reiciendis.', '2009-12-11 11:38:10', 2, 'Totam corrupti "dolor" quo animi nemo. ', NULL, NULL)
901
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
902
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:10', 'Totam corrupti dolor quo animi nemo.', '2009-12-11 11:38:10', 1)
903
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
904
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:10', '2009-12-11 11:38:10', 'Autem aliquam "non" reiciendis. ')
905
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
906
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "preconditions" 
907
+
908
+
909
+ Processing PreconditionsController#create (for 0.0.0.0 at 2009-12-11 11:38:10) [POST]
910
+ Parameters: {"scenario_id"=>"1", "precondition"=>{}}
911
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
912
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
913
+ Rendering template within layouts/main
914
+ Rendering preconditions/new
915
+ Rendered layouts/_meta (0.1ms)
916
+ Rendered layouts/_header (0.3ms)
917
+ Rendered layouts/_footer (0.1ms)
918
+ Completed in 17ms (View: 13, DB: 4) | 200 OK [http://test.host/preconditions?&scenario_id=1]
919
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "preconditions" 
920
+ User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'monroe') LIMIT 1
921
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'briana.kuhic@yostbecker.com') LIMIT 1
922
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '2988ccb3c9f38ba75a8bb63134c429181951bf1b', '2009-12-11 11:38:10', '7dd1b5e3415f683141458c424b9afe30344b8aa0', NULL, '2009-12-11 11:38:10', NULL, 'monroe', 'briana.kuhic@yostbecker.com')
923
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
924
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Architecto temporibus sit voluptatem.') LIMIT 1
925
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('architecto-temporibus-sit-voluptatem', '2009-12-11 11:38:10', 'Architecto temporibus sit voluptatem.', '2009-12-11 11:38:10', 2, 'In voluptas "nulla" maxime voluptatem tenetur soluta voluptatem voluptatum. ', NULL, NULL)
926
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
927
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:10', 'In voluptas nulla maxime voluptatem tenetur soluta voluptatem voluptatum.', '2009-12-11 11:38:10', 1)
928
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
929
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:10', '2009-12-11 11:38:10', 'Architecto temporibus "sit" voluptatem. ')
930
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
931
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "preconditions" 
932
+
933
+
934
+ Processing PreconditionsController#create (for 0.0.0.0 at 2009-12-11 11:38:10) [POST]
935
+ Parameters: {"scenario_id"=>"1", "precondition"=>{"description"=>"Foo"}}
936
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
937
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
938
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:10', '2009-12-11 11:38:10', 'Foo')
939
+ Redirected to http://test.host/preconditions/2
940
+ Completed in 6ms (DB: 4) | 302 Found [http://test.host/preconditions?precondition%5Bdescription%5D=Foo&scenario_id=1]
941
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "preconditions" 
942
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'marge') LIMIT 1
943
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'monroe@frami.info') LIMIT 1
944
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'c05777285bb46610f5003f3926fed9478bb40537', '2009-12-11 11:38:10', '140e3d3ce2212f04773bcfd89b96d8e36f086302', NULL, '2009-12-11 11:38:10', NULL, 'marge', 'monroe@frami.info')
945
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
946
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Aut occaecati accusantium assumenda mini') LIMIT 1
947
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('aut-occaecati-accusantium-assumenda-minima-sint', '2009-12-11 11:38:10', 'Aut occaecati accusantium assumenda minima sint.', '2009-12-11 11:38:10', 2, 'Quis accusamus "quam" quas commodi modi accusantium quis. ', NULL, NULL)
948
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
949
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:10', 'Quis accusamus quam quas commodi modi accusantium quis.', '2009-12-11 11:38:10', 1)
950
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
951
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:10', '2009-12-11 11:38:10', 'Aut occaecati "accusantium" assumenda minima sint. ')
952
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
953
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "preconditions" 
954
+
955
+
956
+ Processing PreconditionsController#destroy (for 0.0.0.0 at 2009-12-11 11:38:10) [DELETE]
957
+ Parameters: {"id"=>"1"}
958
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
959
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
960
+ Precondition Destroy (0.1ms) DELETE FROM "preconditions" WHERE "id" = 1
961
+ Redirected to http://test.host/preconditions
962
+ Completed in 4ms (DB: 4) | 302 Found [http://test.host/preconditions/1]
963
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "preconditions" 
964
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'everardo') LIMIT 1
965
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'dario_weber@green.name') LIMIT 1
966
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '6f1c69e2ce162aab9b867ded818c33497b8081ab', '2009-12-11 11:38:10', '533d42f202b7a484ae703bccb5da805980804bd4', NULL, '2009-12-11 11:38:10', NULL, 'everardo', 'dario_weber@green.name')
967
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
968
+ Story Load (0.1ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Aut aut quo sit repellendus omnis eum.') LIMIT 1
969
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('aut-aut-quo-sit-repellendus-omnis-eum', '2009-12-11 11:38:10', 'Aut aut quo sit repellendus omnis eum.', '2009-12-11 11:38:10', 2, 'Inventore expedita "neque" est corporis qui. ', NULL, NULL)
970
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
971
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:10', 'Inventore expedita neque est corporis qui.', '2009-12-11 11:38:10', 1)
972
+ Scenario Load (0.5ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
973
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:10', '2009-12-11 11:38:10', 'Aut aut "quo" sit repellendus omnis eum. ')
974
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
975
+
976
+
977
+ Processing PreconditionsController#edit (for 0.0.0.0 at 2009-12-11 11:38:10) [GET]
978
+ Parameters: {"scenario_id"=>"1", "id"=>"1"}
979
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
980
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
981
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
982
+ Rendering template within layouts/main
983
+ Rendering preconditions/edit
984
+ Rendered layouts/_meta (0.1ms)
985
+ Rendered layouts/_header (0.2ms)
986
+ Rendered layouts/_footer (0.1ms)
987
+ Completed in 13ms (View: 9, DB: 4) | 200 OK [http://test.host/preconditions/1/edit?scenario_id=1]
988
+ User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'bennett') LIMIT 1
989
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'reginald.romaguera@mullercruickshank.uk') LIMIT 1
990
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'a5d0479052bfa1e6c4e0706305d0d60677424d4b', '2009-12-11 11:38:10', 'dd373f232de8bd1f6721cc1a5049ee7b0e7bdbef', NULL, '2009-12-11 11:38:10', NULL, 'bennett', 'reginald.romaguera@mullercruickshank.uk')
991
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
992
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Porro voluptatem aut facere.') LIMIT 1
993
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('porro-voluptatem-aut-facere', '2009-12-11 11:38:10', 'Porro voluptatem aut facere.', '2009-12-11 11:38:10', 2, 'Facilis commodi "odit" quisquam. ', NULL, NULL)
994
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
995
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:10', 'Facilis commodi odit quisquam.', '2009-12-11 11:38:10', 1)
996
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
997
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:10', '2009-12-11 11:38:10', 'Porro voluptatem "aut" facere. ')
998
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
999
+
1000
+
1001
+ Processing PreconditionsController#index (for 0.0.0.0 at 2009-12-11 11:38:10) [GET]
1002
+ Parameters: {"scenario_id"=>"1"}
1003
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1004
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1005
+ Rendering template within layouts/main
1006
+ Rendering preconditions/index
1007
+ Precondition Load (0.2ms) SELECT * FROM "preconditions" WHERE ("preconditions".scenario_id = 1) 
1008
+ Rendered layouts/_meta (0.1ms)
1009
+ Rendered layouts/_header (0.2ms)
1010
+ Rendered layouts/_footer (0.1ms)
1011
+ Completed in 10ms (View: 7, DB: 4) | 200 OK [http://test.host/preconditions?scenario_id=1]
1012
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'verna') LIMIT 1
1013
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'queenie_nikolaus@wolf.name') LIMIT 1
1014
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '41192560c0e8d2eaa42fe24c771e66ccdd9cda1c', '2009-12-11 11:38:10', 'bdfc5498e02896263220f92361811080a66be5b1', NULL, '2009-12-11 11:38:10', NULL, 'verna', 'queenie_nikolaus@wolf.name')
1015
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1016
+ Story Load (0.3ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Sunt laboriosam excepturi delectus.') LIMIT 1
1017
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('sunt-laboriosam-excepturi-delectus', '2009-12-11 11:38:10', 'Sunt laboriosam excepturi delectus.', '2009-12-11 11:38:10', 2, 'Quo est "dignissimos" ut. ', NULL, NULL)
1018
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1019
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:10', 'Quo est dignissimos ut.', '2009-12-11 11:38:10', 1)
1020
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1021
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:10', '2009-12-11 11:38:10', 'Sunt laboriosam "excepturi" delectus. ')
1022
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1023
+
1024
+
1025
+ Processing PreconditionsController#new (for 0.0.0.0 at 2009-12-11 11:38:10) [GET]
1026
+ Parameters: {"scenario_id"=>"1"}
1027
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1028
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1029
+ Rendering template within layouts/main
1030
+ Rendering preconditions/new
1031
+ Rendered layouts/_meta (0.1ms)
1032
+ Rendered layouts/_header (0.2ms)
1033
+ Rendered layouts/_footer (0.1ms)
1034
+ Completed in 17ms (View: 12, DB: 4) | 200 OK [http://test.host/preconditions/new?scenario_id=1]
1035
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'irving') LIMIT 1
1036
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'hazle@wildermanschaden.us') LIMIT 1
1037
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '7fe7e2bd339b07152cd87f9f0fd4105b5aea6cd4', '2009-12-11 11:38:10', '03dad98bccfad889bfd66293047d1b546f35d76f', NULL, '2009-12-11 11:38:10', NULL, 'irving', 'hazle@wildermanschaden.us')
1038
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1039
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Qui dolores excepturi laudantium.') LIMIT 1
1040
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('qui-dolores-excepturi-laudantium', '2009-12-11 11:38:10', 'Qui dolores excepturi laudantium.', '2009-12-11 11:38:10', 2, 'Et culpa "autem" possimus. ', NULL, NULL)
1041
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1042
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:10', 'Et culpa autem possimus.', '2009-12-11 11:38:10', 1)
1043
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1044
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:10', '2009-12-11 11:38:10', 'Qui dolores "excepturi" laudantium. ')
1045
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1046
+
1047
+
1048
+ Processing PreconditionsController#show (for 0.0.0.0 at 2009-12-11 11:38:10) [GET]
1049
+ Parameters: {"scenario_id"=>"1", "id"=>"1"}
1050
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1051
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1052
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1053
+ Rendering template within layouts/main
1054
+ Rendering preconditions/show
1055
+ Rendered layouts/_meta (0.1ms)
1056
+ Rendered layouts/_header (0.3ms)
1057
+ Rendered layouts/_footer (0.1ms)
1058
+ Completed in 123ms (View: 119, DB: 4) | 200 OK [http://test.host/preconditions/1?scenario_id=1]
1059
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'roxanne') LIMIT 1
1060
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'rahul@collierprice.uk') LIMIT 1
1061
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'd8b1efdc7a6204198cab43d584d09f69f3cd91ec', '2009-12-11 11:38:10', 'fafb9ebfe19565ef2dc411c2ef6c10107050c34b', NULL, '2009-12-11 11:38:10', NULL, 'roxanne', 'rahul@collierprice.uk')
1062
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1063
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Vel blanditiis debitis fuga.') LIMIT 1
1064
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('vel-blanditiis-debitis-fuga', '2009-12-11 11:38:10', 'Vel blanditiis debitis fuga.', '2009-12-11 11:38:10', 2, 'Reprehenderit minima "autem" sed aut sunt. ', NULL, NULL)
1065
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1066
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:10', 'Reprehenderit minima autem sed aut sunt.', '2009-12-11 11:38:10', 1)
1067
+ Scenario Load (0.4ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1068
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:10', '2009-12-11 11:38:10', 'Vel blanditiis "debitis" fuga. ')
1069
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1070
+
1071
+
1072
+ Processing PreconditionsController#update (for 0.0.0.0 at 2009-12-11 11:38:10) [PUT]
1073
+ Parameters: {"scenario_id"=>"1", "precondition"=>{}, "id"=>"1"}
1074
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1075
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1076
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1077
+ Redirected to http://test.host/preconditions/1
1078
+ Completed in 6ms (DB: 4) | 302 Found [http://test.host/preconditions/1?&scenario_id=1]
1079
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'loyal') LIMIT 1
1080
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'rolando.bernier@dare.info') LIMIT 1
1081
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '40ce387eb180a113540bb6575da0d788ca8328a0', '2009-12-11 11:38:10', '519a3f1fe161f5cbb4f8567fc5ea7f578dc76a63', NULL, '2009-12-11 11:38:10', NULL, 'loyal', 'rolando.bernier@dare.info')
1082
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1083
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Cum veniam impedit consequatur corrupti.') LIMIT 1
1084
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('cum-veniam-impedit-consequatur-corrupti', '2009-12-11 11:38:10', 'Cum veniam impedit consequatur corrupti.', '2009-12-11 11:38:10', 2, 'Voluptas incidunt "optio" consequatur eveniet beatae quia magni. ', NULL, NULL)
1085
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1086
+ Scenario Create (0.3ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:10', 'Voluptas incidunt optio consequatur eveniet beatae quia magni.', '2009-12-11 11:38:10', 1)
1087
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1088
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:10', '2009-12-11 11:38:10', 'Cum veniam "impedit" consequatur corrupti. ')
1089
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1090
+
1091
+
1092
+ Processing PreconditionsController#update (for 0.0.0.0 at 2009-12-11 11:38:10) [PUT]
1093
+ Parameters: {"scenario_id"=>"1", "precondition"=>{"description"=>""}, "id"=>"1"}
1094
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1095
+ Scenario Load (0.4ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1096
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1097
+ Rendering template within layouts/main
1098
+ Rendering preconditions/edit
1099
+ Rendered layouts/_meta (0.2ms)
1100
+ Rendered layouts/_header (0.3ms)
1101
+ Rendered layouts/_footer (0.1ms)
1102
+ Completed in 17ms (View: 11, DB: 4) | 200 OK [http://test.host/preconditions/1?precondition%5Bdescription%5D=&scenario_id=1]
1103
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'ben') LIMIT 1
1104
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'arthur@carroll.name') LIMIT 1
1105
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'f2223edac6968f37404f4aca31d0cde1ff2f08aa', '2009-12-11 11:38:10', 'd2ece1eaf8e355b0a37beb3cd313896fc12994b4', NULL, '2009-12-11 11:38:10', NULL, 'ben', 'arthur@carroll.name')
1106
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1107
+ Story Load (0.3ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Hic exercitationem harum nihil eius face') LIMIT 1
1108
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('hic-exercitationem-harum-nihil-eius-facere-in-impedit', '2009-12-11 11:38:10', 'Hic exercitationem harum nihil eius facere in impedit.', '2009-12-11 11:38:10', 2, 'Quo dignissimos "at" suscipit rerum possimus vero. ', NULL, NULL)
1109
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1110
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:10', 'Quo dignissimos at suscipit rerum possimus vero.', '2009-12-11 11:38:10', 1)
1111
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1112
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:10', '2009-12-11 11:38:10', 'Hic exercitationem "harum" nihil eius facere in impedit. ')
1113
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1114
+
1115
+
1116
+ Processing PreconditionsController#update (for 0.0.0.0 at 2009-12-11 11:38:10) [PUT]
1117
+ Parameters: {"scenario_id"=>"1", "precondition"=>{"description"=>""}, "id"=>"1"}
1118
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1119
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1120
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1121
+ Rendering template within layouts/main
1122
+ Rendering preconditions/edit
1123
+ Rendered layouts/_meta (0.1ms)
1124
+ Rendered layouts/_header (0.3ms)
1125
+ Rendered layouts/_footer (0.1ms)
1126
+ Completed in 16ms (View: 12, DB: 4) | 200 OK [http://test.host/preconditions/1?precondition%5Bdescription%5D=&scenario_id=1]
1127
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'nestor') LIMIT 1
1128
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'april@grant.co.uk') LIMIT 1
1129
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '642390ec55c1966c9485288970dd92cf649f5c44', '2009-12-11 11:38:10', '84baaeda86f792fe7fa6409f090b7780ede8b79d', NULL, '2009-12-11 11:38:10', NULL, 'nestor', 'april@grant.co.uk')
1130
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1131
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Porro praesentium repudiandae ut animi.') LIMIT 1
1132
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('porro-praesentium-repudiandae-ut-animi', '2009-12-11 11:38:10', 'Porro praesentium repudiandae ut animi.', '2009-12-11 11:38:10', 2, 'Rerum sint "est" a distinctio rerum commodi. ', NULL, NULL)
1133
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1134
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:10', 'Rerum sint est a distinctio rerum commodi.', '2009-12-11 11:38:10', 1)
1135
+ Scenario Load (0.4ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1136
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(NULL, '2009-12-11 11:38:10', '2009-12-11 11:38:10', 'Porro praesentium "repudiandae" ut animi. ')
1137
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1138
+
1139
+
1140
+ Processing PreconditionsController#update (for 0.0.0.0 at 2009-12-11 11:38:10) [PUT]
1141
+ Parameters: {"scenario_id"=>"1", "precondition"=>{"description"=>"Bar"}, "id"=>"1"}
1142
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1143
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1144
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1145
+ Precondition Update (0.2ms) UPDATE "preconditions" SET "updated_at" = '2009-12-11 11:38:10', "description" = 'Bar' WHERE "id" = 1
1146
+ Redirected to http://test.host/preconditions/1
1147
+ Completed in 7ms (DB: 4) | 302 Found [http://test.host/preconditions/1?precondition%5Bdescription%5D=Bar&scenario_id=1]
1148
+ User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'hilbert') LIMIT 1
1149
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'kali@breitenbergcummings.com') LIMIT 1
1150
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '51b1ca68fc9bf4a5aab8400d6fad1826bdb8b0a6', '2009-12-11 11:38:10', 'e22e8088386fe5eeecfe9b13b5de5471bc625433', NULL, '2009-12-11 11:38:10', NULL, 'hilbert', 'kali@breitenbergcummings.com')
1151
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1152
+ Release Create (0.2ms) INSERT INTO "releases" ("created_at", "notes", "updated_at", "release_date") VALUES('2009-12-11 11:38:10', '---
1153
+ - Velit sit sed consequuntur.
1154
+ - Totam vero explicabo eligendi voluptas amet voluptate voluptas ut.
1155
+ - Perspiciatis non animi rerum quisquam et.
1156
+ ', '2009-12-11 11:38:10', '2009-12-31')
1157
+ Release Load (0.3ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
1158
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "releases" 
1159
+
1160
+
1161
+ Processing ReleasesController#create (for 0.0.0.0 at 2009-12-11 11:38:10) [POST]
1162
+ Parameters: {"release"=>{"notes"=>["Consequuntur temporibus optio iste.", "Esse quis deserunt minima sit voluptas.", "Voluptatem omnis blanditiis enim."], "release_date"=>Thu, 31 Dec 2009}}
1163
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1164
+ Release Create (0.2ms) INSERT INTO "releases" ("created_at", "notes", "updated_at", "release_date") VALUES('2009-12-11 11:38:10', '---
1165
+ - Consequuntur temporibus optio iste.
1166
+ - Esse quis deserunt minima sit voluptas.
1167
+ - Voluptatem omnis blanditiis enim.
1168
+ ', '2009-12-11 11:38:10', '2009-12-31')
1169
+ Redirected to http://test.host/releases/2
1170
+ Completed in 11ms (DB: 3) | 302 Found [http://test.host/releases?release%5Bnotes%5D%5B%5D=Consequuntur+temporibus+optio+iste.&release%5Bnotes%5D%5B%5D=Esse+quis+deserunt+minima+sit+voluptas.&release%5Bnotes%5D%5B%5D=Voluptatem+omnis+blanditiis+enim.&release%5Brelease_date%5D=2009-12-31]
1171
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "releases" 
1172
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'deanna') LIMIT 1
1173
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'hallie@ferry.ca') LIMIT 1
1174
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '088ad6288c001bee2bbba3315fdb24fc04fbb25e', '2009-12-11 11:38:10', '8726a68c589d5c162ebb4d9ff9fc8906a87c88c7', NULL, '2009-12-11 11:38:10', NULL, 'deanna', 'hallie@ferry.ca')
1175
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1176
+ Release Create (0.2ms) INSERT INTO "releases" ("created_at", "notes", "updated_at", "release_date") VALUES('2009-12-11 11:38:10', '---
1177
+ - Aut omnis quia earum et corporis nobis iure.
1178
+ - Et aut voluptas eius deserunt dolor.
1179
+ - Quam est voluptatem nihil.
1180
+ ', '2009-12-11 11:38:10', '2009-12-31')
1181
+ Release Load (0.3ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
1182
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "releases" 
1183
+
1184
+
1185
+ Processing ReleasesController#destroy (for 0.0.0.0 at 2009-12-11 11:38:11) [DELETE]
1186
+ Parameters: {"id"=>"1"}
1187
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1188
+ Release Load (0.4ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
1189
+ Release Destroy (0.1ms) DELETE FROM "releases" WHERE "id" = 1
1190
+ Redirected to http://test.host/releases
1191
+ Completed in 5ms (DB: 3) | 302 Found [http://test.host/releases/1]
1192
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "releases" 
1193
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'sienna') LIMIT 1
1194
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'hipolito@spencer.us') LIMIT 1
1195
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '6e151d990a60970cb848d45cd3e2fe462e3dc871', '2009-12-11 11:38:11', '90d23362514e0753218969665e01c0d71bb604ed', NULL, '2009-12-11 11:38:11', NULL, 'sienna', 'hipolito@spencer.us')
1196
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1197
+ Release Create (0.2ms) INSERT INTO "releases" ("created_at", "notes", "updated_at", "release_date") VALUES('2009-12-11 11:38:11', '---
1198
+ - Omnis vitae maiores ad.
1199
+ - Magnam officia blanditiis recusandae temporibus et amet eaque adipisci.
1200
+ - Alias voluptate neque qui nostrum.
1201
+ ', '2009-12-11 11:38:11', '2009-12-31')
1202
+ Release Load (0.3ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
1203
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "releases" 
1204
+
1205
+
1206
+ Processing ReleasesController#create (for 0.0.0.0 at 2009-12-11 11:38:11) [POST]
1207
+ Parameters: {"release"=>{"notes"=>"hi", "release_date"=>"30/30/2009"}}
1208
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1209
+ Rendering template within layouts/main
1210
+ Rendering releases/new
1211
+ Rendered layouts/_meta (0.1ms)
1212
+ Rendered layouts/_header (0.3ms)
1213
+ Rendered layouts/_footer (0.1ms)
1214
+ Completed in 25ms (View: 21, DB: 3) | 200 OK [http://test.host/releases?release%5Bnotes%5D=hi&release%5Brelease_date%5D=30%2F30%2F2009]
1215
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "releases" 
1216
+ User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'bud') LIMIT 1
1217
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'alessandro_shanahan@vandervortrutherford.ca') LIMIT 1
1218
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'e0b2b07f1dccd08763c173e3f78d9696e87986ab', '2009-12-11 11:38:11', 'c1e54f07140feecfc0228d4f4977ee1b0f121290', NULL, '2009-12-11 11:38:11', NULL, 'bud', 'alessandro_shanahan@vandervortrutherford.ca')
1219
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1220
+ Release Create (0.2ms) INSERT INTO "releases" ("created_at", "notes", "updated_at", "release_date") VALUES('2009-12-11 11:38:11', '---
1221
+ - Accusantium voluptatum rerum eos hic.
1222
+ - Et voluptatum sint nesciunt voluptate qui rerum est.
1223
+ - Molestiae quia vitae quos.
1224
+ ', '2009-12-11 11:38:11', '2009-12-31')
1225
+ Release Load (0.3ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
1226
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "releases" 
1227
+
1228
+
1229
+ Processing ReleasesController#update (for 0.0.0.0 at 2009-12-11 11:38:11) [PUT]
1230
+ Parameters: {"id"=>"1", "release"=>{"notes"=>"hi", "release_date"=>"30/30/2009"}}
1231
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1232
+ Release Load (0.3ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
1233
+ Rendering template within layouts/main
1234
+ Rendering releases/edit
1235
+ Rendered layouts/_meta (0.1ms)
1236
+ Rendered layouts/_header (0.2ms)
1237
+ Rendered layouts/_footer (0.1ms)
1238
+ Completed in 27ms (View: 22, DB: 3) | 200 OK [http://test.host/releases/1?release%5Bnotes%5D=hi&release%5Brelease_date%5D=30%2F30%2F2009]
1239
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "releases" 
1240
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'cortez') LIMIT 1
1241
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'ava.effertz@stark.co.uk') LIMIT 1
1242
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '8656df1a0e6aadcdf41ccd56c3e86624684a0329', '2009-12-11 11:38:11', '54df4a4fc3fd40cc2b2d0bd949fd7b688e270b4f', NULL, '2009-12-11 11:38:11', NULL, 'cortez', 'ava.effertz@stark.co.uk')
1243
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1244
+ Release Create (0.2ms) INSERT INTO "releases" ("created_at", "notes", "updated_at", "release_date") VALUES('2009-12-11 11:38:11', '---
1245
+ - Voluptates tempora atque quis.
1246
+ - Totam corrupti dolor quo animi nemo.
1247
+ - Autem aliquam non reiciendis.
1248
+ ', '2009-12-11 11:38:11', '2009-12-31')
1249
+ Release Load (0.4ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
1250
+
1251
+
1252
+ Processing ReleasesController#edit (for 0.0.0.0 at 2009-12-11 11:38:11) [GET]
1253
+ Parameters: {"id"=>"1"}
1254
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1255
+ Release Load (0.3ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
1256
+ Rendering template within layouts/main
1257
+ Rendering releases/edit
1258
+ Rendered layouts/_meta (0.1ms)
1259
+ Rendered layouts/_header (0.3ms)
1260
+ Rendered layouts/_footer (0.1ms)
1261
+ Completed in 19ms (View: 16, DB: 3) | 200 OK [http://test.host/releases/1/edit]
1262
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'rita') LIMIT 1
1263
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'nikko.dooley@cummingscollier.com') LIMIT 1
1264
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '60be69c31590da2c1a2281ebaec03f1378cad650', '2009-12-11 11:38:11', '8465be2037a4287ac9fbb6fa3ab3430185b504f3', NULL, '2009-12-11 11:38:11', NULL, 'rita', 'nikko.dooley@cummingscollier.com')
1265
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1266
+ Release Create (0.2ms) INSERT INTO "releases" ("created_at", "notes", "updated_at", "release_date") VALUES('2009-12-11 11:38:11', '---
1267
+ - In voluptas nulla maxime voluptatem tenetur soluta voluptatem voluptatum.
1268
+ - Architecto temporibus sit voluptatem.
1269
+ - Quis accusamus quam quas commodi modi accusantium quis.
1270
+ ', '2009-12-11 11:38:11', '2009-12-31')
1271
+ Release Load (0.3ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
1272
+
1273
+
1274
+ Processing ReleasesController#index (for 0.0.0.0 at 2009-12-11 11:38:11) [GET]
1275
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1276
+ Release Load (0.3ms) SELECT * FROM "releases" 
1277
+ Rendering template within layouts/main
1278
+ Rendering releases/index
1279
+ Rendered layouts/_meta (0.2ms)
1280
+ Rendered layouts/_header (0.3ms)
1281
+ Rendered layouts/_footer (0.2ms)
1282
+ Completed in 17ms (View: 14, DB: 2) | 200 OK [http://test.host/releases]
1283
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'chesley') LIMIT 1
1284
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'reed.murphy@kling.com') LIMIT 1
1285
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '0893b324f77f47cb5bd1d7bc83cf562c9eea0a14', '2009-12-11 11:38:11', 'f1ff6205009b0c85482d9cb5b105c6570b530f2f', NULL, '2009-12-11 11:38:11', NULL, 'chesley', 'reed.murphy@kling.com')
1286
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1287
+ Release Create (0.2ms) INSERT INTO "releases" ("created_at", "notes", "updated_at", "release_date") VALUES('2009-12-11 11:38:11', '---
1288
+ - Aut occaecati accusantium assumenda minima sint.
1289
+ - Inventore expedita neque est corporis qui.
1290
+ - Aut aut quo sit repellendus omnis eum.
1291
+ ', '2009-12-11 11:38:11', '2009-12-31')
1292
+ Release Load (0.4ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
1293
+
1294
+
1295
+ Processing ReleasesController#new (for 0.0.0.0 at 2009-12-11 11:38:11) [GET]
1296
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1297
+ Rendering template within layouts/main
1298
+ Rendering releases/new
1299
+ Rendered layouts/_meta (0.1ms)
1300
+ Rendered layouts/_header (0.2ms)
1301
+ Rendered layouts/_footer (0.1ms)
1302
+ Completed in 16ms (View: 13, DB: 2) | 200 OK [http://test.host/releases/new]
1303
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'franz') LIMIT 1
1304
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'vernie@kemmer.name') LIMIT 1
1305
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '5083159483642ba7a205885e2d14d1db4a022242', '2009-12-11 11:38:11', '41a1c1c793299becd7b10a11aa19be8417e13fd7', NULL, '2009-12-11 11:38:11', NULL, 'franz', 'vernie@kemmer.name')
1306
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1307
+ Release Create (0.2ms) INSERT INTO "releases" ("created_at", "notes", "updated_at", "release_date") VALUES('2009-12-11 11:38:11', '---
1308
+ - Facilis commodi odit quisquam.
1309
+ - Porro voluptatem aut facere.
1310
+ - Quo est dignissimos ut.
1311
+ ', '2009-12-11 11:38:11', '2009-12-31')
1312
+ Release Load (0.3ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
1313
+
1314
+
1315
+ Processing ReleasesController#show (for 0.0.0.0 at 2009-12-11 11:38:11) [GET]
1316
+ Parameters: {"id"=>"1"}
1317
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1318
+ Release Load (0.3ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
1319
+ Rendering template within layouts/main
1320
+ Rendering releases/show
1321
+ Rendered layouts/_meta (0.1ms)
1322
+ Rendered layouts/_header (0.3ms)
1323
+ Rendered layouts/_footer (0.1ms)
1324
+ Completed in 10ms (View: 7, DB: 3) | 200 OK [http://test.host/releases/1]
1325
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'janelle') LIMIT 1
1326
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'carissa.harber@hermiston.info') LIMIT 1
1327
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'f87b362331f5e68ceebe4e602462504006e1ce67', '2009-12-11 11:38:11', 'b16739102c693299a8dc4287c7d07179a69a1ee6', NULL, '2009-12-11 11:38:11', NULL, 'janelle', 'carissa.harber@hermiston.info')
1328
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1329
+ Release Create (0.2ms) INSERT INTO "releases" ("created_at", "notes", "updated_at", "release_date") VALUES('2009-12-11 11:38:11', '---
1330
+ - Sunt laboriosam excepturi delectus.
1331
+ - Et culpa autem possimus.
1332
+ - Qui dolores excepturi laudantium.
1333
+ ', '2009-12-11 11:38:11', '2009-12-31')
1334
+ Release Load (0.3ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
1335
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "releases" 
1336
+
1337
+
1338
+ Processing ReleasesController#update (for 0.0.0.0 at 2009-12-11 11:38:11) [PUT]
1339
+ Parameters: {"id"=>"1", "release"=>{"notes"=>["Reprehenderit minima autem sed aut sunt.", "Vel blanditiis debitis fuga.", "Voluptas incidunt optio consequatur eveniet beatae quia magni."], "release_date"=>Thu, 31 Dec 2009}}
1340
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1341
+ Release Load (0.3ms) SELECT * FROM "releases" WHERE ("releases"."id" = 1) 
1342
+ Release Update (0.2ms) UPDATE "releases" SET "updated_at" = '2009-12-11 11:38:11', "notes" = '---
1343
+ - Reprehenderit minima autem sed aut sunt.
1344
+ - Vel blanditiis debitis fuga.
1345
+ - Voluptas incidunt optio consequatur eveniet beatae quia magni.
1346
+ ' WHERE "id" = 1
1347
+ Redirected to http://test.host/releases/1
1348
+ Completed in 7ms (DB: 3) | 302 Found [http://test.host/releases/1?release%5Bnotes%5D%5B%5D=Reprehenderit+minima+autem+sed+aut+sunt.&release%5Bnotes%5D%5B%5D=Vel+blanditiis+debitis+fuga.&release%5Bnotes%5D%5B%5D=Voluptas+incidunt+optio+consequatur+eveniet+beatae+quia+magni.&release%5Brelease_date%5D=2009-12-31]
1349
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "releases" 
1350
+ User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'jensen') LIMIT 1
1351
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'noemie.brakus@nader.co.uk') LIMIT 1
1352
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'd8e2e5a66c3aa81dd40cdafa55289a22da04e76b', '2009-12-11 11:38:11', '04dd7641a28d8f7477ad6a3d8ade474bd510be79', NULL, '2009-12-11 11:38:11', NULL, 'jensen', 'noemie.brakus@nader.co.uk')
1353
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1354
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Et autem sunt ex temporibus.') LIMIT 1
1355
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('et-autem-sunt-ex-temporibus', '2009-12-11 11:38:11', 'Et autem sunt ex temporibus.', '2009-12-11 11:38:11', 2, 'In ab "eos" ullam aspernatur dolore dolorem pariatur repellat. ', NULL, NULL)
1356
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1357
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:11', 'In ab eos ullam aspernatur dolore dolorem pariatur repellat.', '2009-12-11 11:38:11', 1)
1358
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1359
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1360
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "scenarios" 
1361
+
1362
+
1363
+ Processing ScenariosController#create (for 0.0.0.0 at 2009-12-11 11:38:11) [POST]
1364
+ Parameters: {"story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f2faacb1c00 @wrapped_string="et-autem-sunt-ex-temporibus">, "scenario"=>{}}
1365
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1366
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'et-autem-sunt-ex-temporibus') LIMIT 1
1367
+ Rendering template within layouts/main
1368
+ Rendering scenarios/new
1369
+ Rendered layouts/_meta (0.1ms)
1370
+ Rendered layouts/_header (0.3ms)
1371
+ Rendered layouts/_footer (0.1ms)
1372
+ Completed in 14ms (View: 6, DB: 4) | 200 OK [http://test.host/stories/et-autem-sunt-ex-temporibus/scenarios?]
1373
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "scenarios" 
1374
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'celestine') LIMIT 1
1375
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'joesph@mcclure.co.uk') LIMIT 1
1376
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '7b8783082a04b3fad6261391550ec93f78a13c35', '2009-12-11 11:38:11', '03146504a40f1175f74692adfda4ff73271c6411', NULL, '2009-12-11 11:38:11', NULL, 'celestine', 'joesph@mcclure.co.uk')
1377
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1378
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Atque reprehenderit et voluptas ad volup') LIMIT 1
1379
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('atque-reprehenderit-et-voluptas-ad-voluptatem-vel-sint-culpa', '2009-12-11 11:38:11', 'Atque reprehenderit et voluptas ad voluptatem vel sint culpa.', '2009-12-11 11:38:11', 2, 'Et autem "sunt" ex temporibus. ', NULL, NULL)
1380
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1381
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:11', 'Deleniti consequatur et omnis debitis.', '2009-12-11 11:38:11', 1)
1382
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1383
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1384
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "scenarios" 
1385
+
1386
+
1387
+ Processing ScenariosController#create (for 0.0.0.0 at 2009-12-11 11:38:11) [POST]
1388
+ Parameters: {"story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f2faa171ed0 @wrapped_string="atque-reprehenderit-et-voluptas-ad-voluptatem-vel-sint-culpa">, "scenario"=>{}}
1389
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1390
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'atque-reprehenderit-et-voluptas-ad-voluptatem-vel-sint-culpa') LIMIT 1
1391
+ Rendering template within layouts/main
1392
+ Rendering scenarios/new
1393
+ Rendered layouts/_meta (0.1ms)
1394
+ Rendered layouts/_header (0.2ms)
1395
+ Rendered layouts/_footer (1.3ms)
1396
+ Completed in 117ms (View: 112, DB: 4) | 200 OK [http://test.host/stories/atque-reprehenderit-et-voluptas-ad-voluptatem-vel-sint-culpa/scenarios?]
1397
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "scenarios" 
1398
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'tyrel') LIMIT 1
1399
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'florencio@gerlach.info') LIMIT 1
1400
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'ba77bd7a0e696e59e05126f230366074631b26f9', '2009-12-11 11:38:11', '4ea292f684b9ee0c7c9f2176da59f65bb9cdba54', NULL, '2009-12-11 11:38:11', NULL, 'tyrel', 'florencio@gerlach.info')
1401
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1402
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Quis et est unde nisi dolor doloremque s') LIMIT 1
1403
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('quis-et-est-unde-nisi-dolor-doloremque-sapiente-velit', '2009-12-11 11:38:11', 'Quis et est unde nisi dolor doloremque sapiente velit.', '2009-12-11 11:38:11', 2, 'Deleniti consequatur "et" omnis debitis. ', NULL, NULL)
1404
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1405
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:11', 'Dolor et fugit suscipit.', '2009-12-11 11:38:11', 1)
1406
+ Scenario Load (0.4ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1407
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1408
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "scenarios" 
1409
+
1410
+
1411
+ Processing ScenariosController#create (for 0.0.0.0 at 2009-12-11 11:38:11) [POST]
1412
+ Parameters: {"story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f2fa9e5ef68 @wrapped_string="quis-et-est-unde-nisi-dolor-doloremque-sapiente-velit">, "scenario"=>{"title"=>"Foo"}}
1413
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1414
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'quis-et-est-unde-nisi-dolor-doloremque-sapiente-velit') LIMIT 1
1415
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:11', 'Foo', '2009-12-11 11:38:11', 1)
1416
+ Redirected to http://test.host/stories/quis-et-est-unde-nisi-dolor-doloremque-sapiente-velit/scenarios/2
1417
+ Completed in 9ms (DB: 5) | 302 Found [http://test.host/stories/quis-et-est-unde-nisi-dolor-doloremque-sapiente-velit/scenarios?scenario%5Btitle%5D=Foo]
1418
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "scenarios" 
1419
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'cassandra') LIMIT 1
1420
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'myrtie_schmitt@reinger.info') LIMIT 1
1421
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'ce6d7c5e9d9ad1d0f1c8dd3c661dcff667d7fc23', '2009-12-11 11:38:11', 'fcb103197bdd2b4f8b387b4c5d5a3eef4b12b672', NULL, '2009-12-11 11:38:11', NULL, 'cassandra', 'myrtie_schmitt@reinger.info')
1422
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1423
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Non quis officia soluta non iste ut aute') LIMIT 1
1424
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('non-quis-officia-soluta-non-iste-ut-autem', '2009-12-11 11:38:11', 'Non quis officia soluta non iste ut autem.', '2009-12-11 11:38:11', 2, 'Atque reprehenderit "et" voluptas ad voluptatem vel sint culpa. ', NULL, NULL)
1425
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1426
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:11', 'Rem facilis amet quia nesciunt deserunt et id unde.', '2009-12-11 11:38:11', 1)
1427
+ Scenario Load (0.5ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1428
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1429
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "scenarios" 
1430
+
1431
+
1432
+ Processing ScenariosController#destroy (for 0.0.0.0 at 2009-12-11 11:38:11) [DELETE]
1433
+ Parameters: {"id"=>"1", "story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f2fa9e0f0d0 @wrapped_string="non-quis-officia-soluta-non-iste-ut-autem">}
1434
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1435
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1436
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1437
+ Outcome Load (0.1ms) SELECT * FROM "outcomes" WHERE ("outcomes".scenario_id = 1) 
1438
+ Precondition Load (0.1ms) SELECT * FROM "preconditions" WHERE ("preconditions".scenario_id = 1) 
1439
+ Scenario Destroy (0.1ms) DELETE FROM "scenarios" WHERE "id" = 1
1440
+ Redirected to http://test.host/stories/non-quis-officia-soluta-non-iste-ut-autem/scenarios
1441
+ Completed in 8ms (DB: 5) | 302 Found [http://test.host/stories/non-quis-officia-soluta-non-iste-ut-autem/scenarios/1]
1442
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "scenarios" 
1443
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'kailey') LIMIT 1
1444
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'sean@bartell.name') LIMIT 1
1445
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '1542da0ec793ec861d3998afa9c5149e53d228f8', '2009-12-11 11:38:11', '8e4c335e08c083506fdf7c54c082fedac268d2eb', NULL, '2009-12-11 11:38:11', NULL, 'kailey', 'sean@bartell.name')
1446
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1447
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Sint minima magni occaecati.') LIMIT 1
1448
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('sint-minima-magni-occaecati', '2009-12-11 11:38:12', 'Sint minima magni occaecati.', '2009-12-11 11:38:12', 2, 'Dolor et "fugit" suscipit. ', NULL, NULL)
1449
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1450
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:12', 'Sunt praesentium officiis id tempora et.', '2009-12-11 11:38:12', 1)
1451
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1452
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1453
+
1454
+
1455
+ Processing ScenariosController#edit (for 0.0.0.0 at 2009-12-11 11:38:12) [GET]
1456
+ Parameters: {"id"=>"1", "story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f2fa9bc73e0 @wrapped_string="sint-minima-magni-occaecati">}
1457
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1458
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'sint-minima-magni-occaecati') LIMIT 1
1459
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1460
+ Rendering template within layouts/main
1461
+ Rendering scenarios/edit
1462
+ Rendered layouts/_meta (0.1ms)
1463
+ Rendered layouts/_header (0.2ms)
1464
+ Rendered layouts/_footer (0.1ms)
1465
+ Completed in 10ms (View: 6, DB: 4) | 200 OK [http://test.host/stories/sint-minima-magni-occaecati/scenarios/1/edit]
1466
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'leslie') LIMIT 1
1467
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'lesly_kilback@zboncak.biz') LIMIT 1
1468
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '1b908ce1ac98dbc57913ef3927ce2e87082aea72', '2009-12-11 11:38:12', '650fc3c63f910adb5956a6602b79381e87b46cab', NULL, '2009-12-11 11:38:12', NULL, 'leslie', 'lesly_kilback@zboncak.biz')
1469
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1470
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Omnis dolorem praesentium perferendis cu') LIMIT 1
1471
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('omnis-dolorem-praesentium-perferendis-cum', '2009-12-11 11:38:12', 'Omnis dolorem praesentium perferendis cum.', '2009-12-11 11:38:12', 2, 'Quis et "est" unde nisi dolor doloremque sapiente velit. ', NULL, NULL)
1472
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1473
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:12', 'Molestias aspernatur et rem nobis ea aut dolorem.', '2009-12-11 11:38:12', 1)
1474
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1475
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1476
+
1477
+
1478
+ Processing ScenariosController#index (for 0.0.0.0 at 2009-12-11 11:38:12) [GET]
1479
+ Parameters: {"story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f2fa9b6e560 @wrapped_string="omnis-dolorem-praesentium-perferendis-cum">}
1480
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1481
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'omnis-dolorem-praesentium-perferendis-cum') LIMIT 1
1482
+ Rendering template within layouts/main
1483
+ Rendering scenarios/index
1484
+ Rendered layouts/_meta (0.1ms)
1485
+ Rendered layouts/_header (0.3ms)
1486
+ Rendered layouts/_footer (0.1ms)
1487
+ Completed in 112ms (View: 109, DB: 4) | 200 OK [http://test.host/stories/omnis-dolorem-praesentium-perferendis-cum/scenarios]
1488
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'izabella') LIMIT 1
1489
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'amaya@prohaska.uk') LIMIT 1
1490
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '002903cc3d755624bfa46c157a374b89b6c8ee44', '2009-12-11 11:38:12', 'c4a833602b2f95bdd7ee9db0218e6895f3e0e993', NULL, '2009-12-11 11:38:12', NULL, 'izabella', 'amaya@prohaska.uk')
1491
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1492
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Quia velit quod laborum.') LIMIT 1
1493
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('quia-velit-quod-laborum', '2009-12-11 11:38:12', 'Quia velit quod laborum.', '2009-12-11 11:38:12', 2, 'Rem facilis "amet" quia nesciunt deserunt et id unde. ', NULL, NULL)
1494
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1495
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:12', 'Quo voluptatem commodi doloremque illo ex reprehenderit unde pariatur.', '2009-12-11 11:38:12', 1)
1496
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1497
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1498
+
1499
+
1500
+ Processing ScenariosController#new (for 0.0.0.0 at 2009-12-11 11:38:12) [GET]
1501
+ Parameters: {"story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f2faafeb858 @wrapped_string="quia-velit-quod-laborum">}
1502
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1503
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'quia-velit-quod-laborum') LIMIT 1
1504
+ Rendering template within layouts/main
1505
+ Rendering scenarios/new
1506
+ Rendered layouts/_meta (0.1ms)
1507
+ Rendered layouts/_header (0.3ms)
1508
+ Rendered layouts/_footer (0.1ms)
1509
+ Completed in 11ms (View: 6, DB: 4) | 200 OK [http://test.host/stories/quia-velit-quod-laborum/scenarios/new]
1510
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'shirley') LIMIT 1
1511
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'malcolm@boscowitting.us') LIMIT 1
1512
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '8253ca5de151ce04374da03e5416be2a4b451906', '2009-12-11 11:38:12', '33cbdb33cc06fcce6880aec80793896643cb3ea9', NULL, '2009-12-11 11:38:12', NULL, 'shirley', 'malcolm@boscowitting.us')
1513
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1514
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Voluptatem soluta sequi corrupti.') LIMIT 1
1515
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('voluptatem-soluta-sequi-corrupti', '2009-12-11 11:38:12', 'Voluptatem soluta sequi corrupti.', '2009-12-11 11:38:12', 2, 'Non quis "officia" soluta non iste ut autem. ', NULL, NULL)
1516
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1517
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:12', 'Quia at omnis voluptatem et ipsam in ut aperiam.', '2009-12-11 11:38:12', 1)
1518
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1519
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1520
+
1521
+
1522
+ Processing ScenariosController#show (for 0.0.0.0 at 2009-12-11 11:38:12) [GET]
1523
+ Parameters: {"id"=>"1", "story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f2faaf87358 @wrapped_string="voluptatem-soluta-sequi-corrupti">}
1524
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1525
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'voluptatem-soluta-sequi-corrupti') LIMIT 1
1526
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1527
+ Rendering template within layouts/main
1528
+ Rendering scenarios/show
1529
+ Rendered layouts/_meta (0.1ms)
1530
+ Rendered layouts/_header (0.2ms)
1531
+ Rendered layouts/_footer (0.1ms)
1532
+ Completed in 10ms (View: 6, DB: 4) | 200 OK [http://test.host/stories/voluptatem-soluta-sequi-corrupti/scenarios/1]
1533
+ User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'eldred') LIMIT 1
1534
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'kane@lemke.us') LIMIT 1
1535
+ User Create (0.4ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '3c1e26f0bb1b9f4f03e7fece7c698f55ee912f56', '2009-12-11 11:38:12', 'efe4b1e60ad4e7b68b5e773f446a1dcdfbfc8e08', NULL, '2009-12-11 11:38:12', NULL, 'eldred', 'kane@lemke.us')
1536
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1537
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Ut eligendi et asperiores quas non verit') LIMIT 1
1538
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('ut-eligendi-et-asperiores-quas-non-veritatis-id', '2009-12-11 11:38:12', 'Ut eligendi et asperiores quas non veritatis id.', '2009-12-11 11:38:12', 2, 'Sunt praesentium "officiis" id tempora et. ', NULL, NULL)
1539
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1540
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:12', 'Sequi odio sed eaque beatae deserunt et dolor cumque.', '2009-12-11 11:38:12', 1)
1541
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1542
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1543
+
1544
+
1545
+ Processing ScenariosController#update (for 0.0.0.0 at 2009-12-11 11:38:12) [PUT]
1546
+ Parameters: {"id"=>"1", "story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f2faaf295a0 @wrapped_string="ut-eligendi-et-asperiores-quas-non-veritatis-id">, "scenario"=>{"title"=>""}}
1547
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1548
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'ut-eligendi-et-asperiores-quas-non-veritatis-id') LIMIT 1
1549
+ Scenario Load (0.4ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1550
+ Rendering template within layouts/main
1551
+ Rendering scenarios/edit
1552
+ Rendered layouts/_meta (0.1ms)
1553
+ Rendered layouts/_header (0.2ms)
1554
+ Rendered layouts/_footer (0.1ms)
1555
+ Completed in 12ms (View: 6, DB: 4) | 200 OK [http://test.host/stories/ut-eligendi-et-asperiores-quas-non-veritatis-id/scenarios/1?scenario%5Btitle%5D=]
1556
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'ida') LIMIT 1
1557
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'myrna.streich@cristoconner.com') LIMIT 1
1558
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'b0421eb6353b938c9eec9957559b1dbfdeaae3b0', '2009-12-11 11:38:12', 'b1697028f9080f60c9fe3d204956408ec4f87ddf', NULL, '2009-12-11 11:38:12', NULL, 'ida', 'myrna.streich@cristoconner.com')
1559
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1560
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Eveniet sit et nostrum cum mollitia simi') LIMIT 1
1561
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('eveniet-sit-et-nostrum-cum-mollitia-similique', '2009-12-11 11:38:12', 'Eveniet sit et nostrum cum mollitia similique.', '2009-12-11 11:38:12', 2, 'Sint minima "magni" occaecati. ', NULL, NULL)
1562
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1563
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:12', 'Et sapiente consequuntur fuga commodi necessitatibus voluptas.', '2009-12-11 11:38:12', 1)
1564
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1565
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1566
+
1567
+
1568
+ Processing ScenariosController#update (for 0.0.0.0 at 2009-12-11 11:38:12) [PUT]
1569
+ Parameters: {"id"=>"1", "story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f2faaec9150 @wrapped_string="eveniet-sit-et-nostrum-cum-mollitia-similique">, "scenario"=>{"title"=>""}}
1570
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1571
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'eveniet-sit-et-nostrum-cum-mollitia-similique') LIMIT 1
1572
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1573
+ Rendering template within layouts/main
1574
+ Rendering scenarios/edit
1575
+ Rendered layouts/_meta (0.2ms)
1576
+ Rendered layouts/_header (0.2ms)
1577
+ Rendered layouts/_footer (0.1ms)
1578
+ Completed in 11ms (View: 6, DB: 4) | 200 OK [http://test.host/stories/eveniet-sit-et-nostrum-cum-mollitia-similique/scenarios/1?scenario%5Btitle%5D=]
1579
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'abigayle') LIMIT 1
1580
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'maureen.abernathy@streich.name') LIMIT 1
1581
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '310da6c13d9424a61298ec4196503e8134d6313c', '2009-12-11 11:38:12', '50540333f7a7a1cb4275a5a85615a2ec288ab3d3', NULL, '2009-12-11 11:38:12', NULL, 'abigayle', 'maureen.abernathy@streich.name')
1582
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1583
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Est ut deleniti quod ipsam minima amet f') LIMIT 1
1584
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('est-ut-deleniti-quod-ipsam-minima-amet-fuga-ipsum', '2009-12-11 11:38:12', 'Est ut deleniti quod ipsam minima amet fuga ipsum.', '2009-12-11 11:38:12', 2, 'Molestias aspernatur "et" rem nobis ea aut dolorem. ', NULL, NULL)
1585
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1586
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:12', 'Aut saepe ipsam consequatur.', '2009-12-11 11:38:12', 1)
1587
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1588
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1589
+
1590
+
1591
+ Processing ScenariosController#update (for 0.0.0.0 at 2009-12-11 11:38:12) [PUT]
1592
+ Parameters: {"id"=>"1", "story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f2faae67518 @wrapped_string="est-ut-deleniti-quod-ipsam-minima-amet-fuga-ipsum">, "scenario"=>{"title"=>"Bar"}}
1593
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1594
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'est-ut-deleniti-quod-ipsam-minima-amet-fuga-ipsum') LIMIT 1
1595
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1596
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:12', "title" = 'Bar' WHERE "id" = 1
1597
+ Redirected to http://test.host/stories/est-ut-deleniti-quod-ipsam-minima-amet-fuga-ipsum/scenarios/1
1598
+ Completed in 9ms (DB: 4) | 302 Found [http://test.host/stories/est-ut-deleniti-quod-ipsam-minima-amet-fuga-ipsum/scenarios/1?scenario%5Btitle%5D=Bar]
1599
+ User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
1600
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'giovani@oconner.ca') LIMIT 1
1601
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'fbec2ccd3d8009812c5ab3a64be59a4468d4f98c', '2009-12-06 11:38:12', 'af8d12508d7cea981617c91651aa3e2638c2c902', '2009-12-12 11:38:12', '2009-12-11 11:38:12', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'giovani@oconner.ca')
1602
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1603
+
1604
+
1605
+ Processing SessionsController#destroy (for 0.0.0.0 at 2009-12-11 11:38:12) [GET]
1606
+ Redirected to http://test.host/
1607
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/logout]
1608
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
1609
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'niko_dare@ortiz.biz') LIMIT 1
1610
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'd878f3dd4cce184dc38a0407a100f07c4b616414', '2009-12-06 11:38:12', 'cb3d09dcafae928edaf7e66845b831e9ebeb1d11', '2009-12-12 11:38:12', '2009-12-11 11:38:12', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'niko_dare@ortiz.biz')
1611
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1612
+ User Update (0.2ms) UPDATE "users" SET "updated_at" = '2009-12-11 11:38:12', "remember_token" = '32b70cdd5d60af5226a2652da8df5839ceb0c00f', "remember_token_expires_at" = '2009-12-25 11:38:12' WHERE "id" = 1
1613
+
1614
+
1615
+ Processing SessionsController#new (for 0.0.0.0 at 2009-12-11 11:38:12) [GET]
1616
+ Rendering template within layouts/main
1617
+ Rendering sessions/new
1618
+ Rendered layouts/_meta (0.1ms)
1619
+ Rendered layouts/_header (0.3ms)
1620
+ Rendered layouts/_footer (0.1ms)
1621
+ Completed in 9ms (View: 9, DB: 1) | 200 OK [http://test.host/login]
1622
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."remember_token" = 'invalid_auth_token') LIMIT 1
1623
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
1624
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'jennie@ledner.com') LIMIT 1
1625
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '8926ef4dea9a124a7b45a613cbd6cc312ea4f710', '2009-12-06 11:38:12', 'c2a6c7af9d477ebf5208547ddb8932cf82229021', '2009-12-12 11:38:12', '2009-12-11 11:38:12', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'jennie@ledner.com')
1626
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1627
+ User Update (0.2ms) UPDATE "users" SET "updated_at" = '2009-12-11 11:38:12', "remember_token" = 'eb013768206b180d989ab001c3f9f59bd40a72b3', "remember_token_expires_at" = '2009-12-25 11:38:12' WHERE "id" = 1
1628
+ User Update (0.2ms) UPDATE "users" SET "updated_at" = '2009-12-11 11:38:12', "remember_token_expires_at" = '2009-12-11 11:33:12' WHERE "id" = 1
1629
+
1630
+
1631
+ Processing SessionsController#new (for 0.0.0.0 at 2009-12-11 11:38:12) [GET]
1632
+ Rendering template within layouts/main
1633
+ Rendering sessions/new
1634
+ Rendered layouts/_meta (0.1ms)
1635
+ Rendered layouts/_header (0.2ms)
1636
+ Rendered layouts/_footer (0.1ms)
1637
+ Completed in 8ms (View: 7, DB: 2) | 200 OK [http://test.host/login]
1638
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."remember_token" = 'eb013768206b180d989ab001c3f9f59bd40a72b3') LIMIT 1
1639
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
1640
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'jedediah_reinger@kohler.us') LIMIT 1
1641
+ User Create (0.4ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'df1aabf7ac5f1b6b8df40b49d94806a01a07e93e', '2009-12-06 11:38:12', '45c3c2f79cdf84c558a328842dfba88dd585fc33', '2009-12-12 11:38:12', '2009-12-11 11:38:12', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'jedediah_reinger@kohler.us')
1642
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1643
+
1644
+
1645
+ Processing SessionsController#create (for 0.0.0.0 at 2009-12-11 11:38:12) [POST]
1646
+ Parameters: {"login"=>"quentin", "password"=>"bad password"}
1647
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
1648
+ Failed login for 'quentin' from 0.0.0.0 at Fri Dec 11 11:38:12 UTC 2009
1649
+ Rendering template within layouts/main
1650
+ Rendering sessions/new
1651
+ Rendered layouts/_meta (0.1ms)
1652
+ Rendered layouts/_header (0.2ms)
1653
+ Rendered layouts/_footer (0.1ms)
1654
+ Completed in 10ms (View: 7, DB: 2) | 200 OK [http://test.host/session?login=quentin&password=bad+password]
1655
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
1656
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'alfonso@feil.info') LIMIT 1
1657
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '26ed8133a4ba32cbe853e5e8c1e3a6ec8ff97d28', '2009-12-06 11:38:12', '103d1e06dc3517b983ecefc82f66e8e268d8f0e4', '2009-12-12 11:38:12', '2009-12-11 11:38:12', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'alfonso@feil.info')
1658
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1659
+
1660
+
1661
+ Processing SessionsController#create (for 0.0.0.0 at 2009-12-11 11:38:12) [POST]
1662
+ Parameters: {"login"=>"quentin", "password"=>"monkey"}
1663
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
1664
+ User Update (0.2ms) UPDATE "users" SET "updated_at" = '2009-12-11 11:38:12', "remember_token" = NULL, "remember_token_expires_at" = NULL WHERE "id" = 1
1665
+ Redirected to http://test.host/
1666
+ Completed in 5ms (DB: 2) | 302 Found [http://test.host/session?login=quentin&password=monkey]
1667
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
1668
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'sheridan_kilback@rathlittel.biz') LIMIT 1
1669
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '11dcc1062a856758809f3d0a461651b1099d3d5b', '2009-12-06 11:38:12', '5b6dc0042ce51ae6e378208d3e089b603cfc2e1e', '2009-12-12 11:38:12', '2009-12-11 11:38:12', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'sheridan_kilback@rathlittel.biz')
1670
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1671
+ User Update (0.2ms) UPDATE "users" SET "updated_at" = '2009-12-11 11:38:12', "remember_token" = '2ecd14470ecafb2d004f695bf15344833921486e', "remember_token_expires_at" = '2009-12-25 11:38:12' WHERE "id" = 1
1672
+
1673
+
1674
+ Processing SessionsController#new (for 0.0.0.0 at 2009-12-11 11:38:12) [GET]
1675
+ Rendering template within layouts/main
1676
+ Rendering sessions/new
1677
+ Rendered layouts/_meta (0.1ms)
1678
+ Rendered layouts/_header (11.6ms)
1679
+ Rendered layouts/_footer (0.2ms)
1680
+ Completed in 123ms (View: 122, DB: 1) | 200 OK [http://test.host/login]
1681
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."remember_token" = '2ecd14470ecafb2d004f695bf15344833921486e') LIMIT 1
1682
+ User Update (0.2ms) UPDATE "users" SET "updated_at" = '2009-12-11 11:38:12', "remember_token" = NULL, "remember_token_expires_at" = NULL WHERE "id" = 1
1683
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
1684
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'cora.nienow@beier.uk') LIMIT 1
1685
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'c31ef03b4efd7e87a805fc9e0e0e86accf37a610', '2009-12-06 11:38:12', '8c4e3a67c9390c53cc51c8cfb9edd19acad05c9f', '2009-12-12 11:38:12', '2009-12-11 11:38:12', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'cora.nienow@beier.uk')
1686
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1687
+
1688
+
1689
+ Processing SessionsController#destroy (for 0.0.0.0 at 2009-12-11 11:38:12) [GET]
1690
+ Redirected to http://test.host/
1691
+ Completed in 1ms (DB: 2) | 302 Found [http://test.host/logout]
1692
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
1693
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'jaylan.schinner@hermann.com') LIMIT 1
1694
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '2124a1ba81eab88977bc5535d389a9175c66d265', '2009-12-06 11:38:12', '20172c5866f39db8d3f9f836fc5f871dee78c288', '2009-12-12 11:38:12', '2009-12-11 11:38:12', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'jaylan.schinner@hermann.com')
1695
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1696
+
1697
+
1698
+ Processing SessionsController#create (for 0.0.0.0 at 2009-12-11 11:38:12) [POST]
1699
+ Parameters: {"remember_me"=>"0", "login"=>"quentin", "password"=>"monkey"}
1700
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
1701
+ User Update (0.2ms) UPDATE "users" SET "updated_at" = '2009-12-11 11:38:12', "remember_token" = NULL, "remember_token_expires_at" = NULL WHERE "id" = 1
1702
+ Redirected to http://test.host/
1703
+ Completed in 5ms (DB: 2) | 302 Found [http://test.host/session?login=quentin&password=monkey&remember_me=0]
1704
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
1705
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'bennett@rowe.name') LIMIT 1
1706
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'c6988b9ead053e6bca88b8833a1848bbbcbc1783', '2009-12-06 11:38:12', '2ca14c830d03fd1ac08b6a9311024e55e41c9ece', '2009-12-12 11:38:12', '2009-12-11 11:38:12', '77de68daecd823babbb58edb1c8e14d7106e83bb', 'quentin', 'bennett@rowe.name')
1707
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1708
+
1709
+
1710
+ Processing SessionsController#create (for 0.0.0.0 at 2009-12-11 11:38:12) [POST]
1711
+ Parameters: {"remember_me"=>"1", "login"=>"quentin", "password"=>"monkey"}
1712
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."login" = 'quentin') LIMIT 1
1713
+ User Update (0.2ms) UPDATE "users" SET "updated_at" = '2009-12-11 11:38:12', "remember_token" = 'e0ecc399246f8d99a85a7999fa0aac715a432d2b', "remember_token_expires_at" = '2009-12-25 11:38:12' WHERE "id" = 1
1714
+ Redirected to http://test.host/
1715
+ Completed in 6ms (DB: 2) | 302 Found [http://test.host/session?login=quentin&password=monkey&remember_me=1]
1716
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Omnis autem non explicabo.') LIMIT 1
1717
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('omnis-autem-non-explicabo', '2009-12-11 11:38:12', 'Omnis autem non explicabo.', '2009-12-11 11:38:12', 2, 'Omnis dolorem "praesentium" perferendis cum. ', NULL, NULL)
1718
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1719
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Aut soluta aut quia.') LIMIT 1
1720
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('aut-soluta-aut-quia', '2009-12-11 11:38:12', 'Aut soluta aut quia.', '2009-12-11 11:38:12', 2, 'Quo voluptatem "commodi" doloremque illo ex reprehenderit unde pariatur. ', NULL, NULL)
1721
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
1722
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:12', 'Doloremque similique aliquid ducimus et.', '2009-12-11 11:38:12', 2)
1723
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1724
+ Precondition Create (0.3ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Quia velit "quod" laborum. ')
1725
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1726
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Vel voluptate "aliquid" et doloribus "sint" eum ad sequi Alias omnis tenetur assumenda eligendi nisi. ')
1727
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
1728
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Quia at "omnis" voluptatem et ipsam in ut aperiam. ')
1729
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
1730
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Voluptatem soluta "sequi" corrupti. ')
1731
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
1732
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:12', "story_id" = 1 WHERE "id" = 1
1733
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Animi itaque sit repellendus qui.') LIMIT 1
1734
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('animi-itaque-sit-repellendus-qui', '2009-12-11 11:38:12', 'Animi itaque sit repellendus qui.', '2009-12-11 11:38:12', 2, 'Sequi odio "sed" eaque beatae deserunt et dolor cumque. ', NULL, NULL)
1735
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
1736
+ Scenario Create (0.1ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:12', 'Aut animi voluptatem ipsa repellat rerum ipsum.', '2009-12-11 11:38:12', 3)
1737
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
1738
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Ut eligendi "et" asperiores quas non veritatis id. ')
1739
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
1740
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Voluptas quo "minima" sapiente voluptatibus "sit" Iusto est architecto dolorum omnis provident. ')
1741
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
1742
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Et sapiente "consequuntur" fuga commodi necessitatibus voluptas. ')
1743
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
1744
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Eveniet sit "et" nostrum cum mollitia similique. ')
1745
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
1746
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:12', "story_id" = 1 WHERE "id" = 2
1747
+
1748
+
1749
+ Processing StoriesController#show (for 0.0.0.0 at 2009-12-11 11:38:12) [GET]
1750
+ Parameters: {"id"=>"none-such-story"}
1751
+ Iteration Load (0.3ms) SELECT * FROM "iterations" 
1752
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'none-such-story') LIMIT 1
1753
+ Rendering /home/daniel/projects/branston/lib/branston/public/404.html (404 Not Found)
1754
+ Completed in 8ms (View: 2, DB: 8) | 404 Not Found [http://test.host/stories/none-such-story]
1755
+ Story Load (0.3ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Voluptate aliquam facere eius voluptas u') LIMIT 1
1756
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('voluptate-aliquam-facere-eius-voluptas-ullam', '2009-12-11 11:38:12', 'Voluptate aliquam facere eius voluptas ullam.', '2009-12-11 11:38:12', 2, 'Aut saepe "ipsam" consequatur. ', NULL, NULL)
1757
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1758
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Rerum iure minima debitis.') LIMIT 1
1759
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('rerum-iure-minima-debitis', '2009-12-11 11:38:12', 'Rerum iure minima debitis.', '2009-12-11 11:38:12', 2, 'Est ut "deleniti" quod ipsam minima amet fuga ipsum. ', NULL, NULL)
1760
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
1761
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:12', 'Perferendis aliquam corporis reprehenderit quam.', '2009-12-11 11:38:12', 2)
1762
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1763
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Omnis autem "non" explicabo. ')
1764
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1765
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Delectus esse "atque" odit quos "et" Quia omnis molestiae voluptatem. ')
1766
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
1767
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Doloremque similique "aliquid" ducimus et. ')
1768
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
1769
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Aut soluta "aut" quia. ')
1770
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
1771
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:12', "story_id" = 1 WHERE "id" = 1
1772
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Sequi natus pariatur voluptatem incidunt') LIMIT 1
1773
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('sequi-natus-pariatur-voluptatem-incidunt-facere-qui-minima-impedit', '2009-12-11 11:38:12', 'Sequi natus pariatur voluptatem incidunt facere qui minima impedit.', '2009-12-11 11:38:12', 2, 'Aut animi "voluptatem" ipsa repellat rerum ipsum. ', NULL, NULL)
1774
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
1775
+ Scenario Create (0.1ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:12', 'Sunt illo sed beatae qui omnis aliquid corporis.', '2009-12-11 11:38:12', 3)
1776
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
1777
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Animi itaque "sit" repellendus qui. ')
1778
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
1779
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Velit sit "sed" consequuntur Totam "vero" explicabo eligendi voluptas amet voluptate voluptas ut. ')
1780
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
1781
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Voluptate aliquam "facere" eius voluptas ullam. ')
1782
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
1783
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Perferendis aliquam "corporis" reprehenderit quam. ')
1784
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
1785
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:12', "story_id" = 1 WHERE "id" = 2
1786
+
1787
+
1788
+ Processing StoriesController#show (for 0.0.0.0 at 2009-12-11 11:38:12) [GET]
1789
+ Parameters: {"id"=>#<ActiveSupport::Multibyte::Chars:0x7f2faae5a070 @wrapped_string="voluptate-aliquam-facere-eius-voluptas-ullam">}
1790
+ Iteration Load (0.2ms) SELECT * FROM "iterations" 
1791
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'voluptate-aliquam-facere-eius-voluptas-ullam') LIMIT 1
1792
+ Rendering template within layouts/main
1793
+ Rendering stories/show
1794
+ Rendered layouts/_meta (0.1ms)
1795
+ Rendered layouts/_header (0.3ms)
1796
+ Rendered layouts/_footer (0.1ms)
1797
+ Completed in 14ms (View: 12, DB: 8) | 200 OK [http://test.host/stories/voluptate-aliquam-facere-eius-voluptas-ullam]
1798
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Sapiente doloremque inventore consequatu') LIMIT 1
1799
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('sapiente-doloremque-inventore-consequatur', '2009-12-11 11:38:12', 'Sapiente doloremque inventore consequatur.', '2009-12-11 11:38:12', 2, 'Rerum iure "minima" debitis. ', NULL, NULL)
1800
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1801
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Dolore amet qui libero itaque optio et.') LIMIT 1
1802
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('dolore-amet-qui-libero-itaque-optio-et', '2009-12-11 11:38:12', 'Dolore amet qui libero itaque optio et.', '2009-12-11 11:38:12', 2, 'Sunt illo "sed" beatae qui omnis aliquid corporis. ', NULL, NULL)
1803
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
1804
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:12', 'Corrupti recusandae officiis id voluptates aspernatur eaque delectus.', '2009-12-11 11:38:12', 2)
1805
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1806
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Sequi natus "pariatur" voluptatem incidunt facere qui minima impedit. ')
1807
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1808
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Perspiciatis non "animi" rerum quisquam "et" Consequuntur temporibus optio iste. ')
1809
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
1810
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Sapiente doloremque "inventore" consequatur. ')
1811
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
1812
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Corrupti recusandae "officiis" id voluptates aspernatur eaque delectus. ')
1813
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
1814
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:12', "story_id" = 1 WHERE "id" = 1
1815
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Nisi esse doloribus illum voluptatem sed') LIMIT 1
1816
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('nisi-esse-doloribus-illum-voluptatem-sed-ab', '2009-12-11 11:38:12', 'Nisi esse doloribus illum voluptatem sed ab.', '2009-12-11 11:38:12', 2, 'Dolore amet "qui" libero itaque optio et. ', NULL, NULL)
1817
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
1818
+ Scenario Create (0.1ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:12', 'Sunt cupiditate quidem sint.', '2009-12-11 11:38:12', 3)
1819
+ Scenario Load (0.4ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
1820
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Sunt cupiditate "quidem" sint. ')
1821
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
1822
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Esse quis "deserunt" minima sit "voluptas" Voluptatem omnis blanditiis enim. ')
1823
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
1824
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Nisi esse "doloribus" illum voluptatem sed ab. ')
1825
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
1826
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:12', '2009-12-11 11:38:12', 'Non quis "sapiente" sunt consequuntur accusamus ex. ')
1827
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
1828
+ Scenario Update (0.1ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:12', "story_id" = 1 WHERE "id" = 2
1829
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'nayeli') LIMIT 1
1830
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'roy.durgan@kautzer.us') LIMIT 1
1831
+ User Create (0.2ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '6d25504ef64b59ebef7f671f06d91f1d3071a46c', '2009-12-11 11:38:12', '671fb41830976bff0393ad4b7db4d3ef25a8a65a', NULL, '2009-12-11 11:38:12', NULL, 'nayeli', 'roy.durgan@kautzer.us')
1832
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1833
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" 
1834
+
1835
+
1836
+ Processing StoriesController#create (for 0.0.0.0 at 2009-12-11 11:38:12) [POST]
1837
+ Parameters: {"story"=>{}}
1838
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1839
+ Iteration Load (0.1ms) SELECT * FROM "iterations" 
1840
+ Story Load (0.1ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" IS NULL) LIMIT 1
1841
+ Rendering template within layouts/main
1842
+ Rendering stories/new
1843
+ Rendered stories/_form (11.2ms)
1844
+ Rendered layouts/_meta (0.1ms)
1845
+ Rendered layouts/_header (0.2ms)
1846
+ Rendered layouts/_footer (0.1ms)
1847
+ Completed in 145ms (View: 141, DB: 10) | 200 OK [http://test.host/stories?]
1848
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" 
1849
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Non quis sapiente sunt consequuntur accu') LIMIT 1
1850
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('non-quis-sapiente-sunt-consequuntur-accusamus-ex', '2009-12-11 11:38:13', 'Non quis sapiente sunt consequuntur accusamus ex.', '2009-12-11 11:38:13', 2, 'Ut nobis "quia" earum voluptatem. ', NULL, NULL)
1851
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1852
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Laboriosam inventore et excepturi omnis ') LIMIT 1
1853
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('laboriosam-inventore-et-excepturi-omnis-ea-explicabo-suscipit', '2009-12-11 11:38:13', 'Laboriosam inventore et excepturi omnis ea explicabo suscipit.', '2009-12-11 11:38:13', 2, 'Laboriosam inventore "et" excepturi omnis ea explicabo suscipit. ', NULL, NULL)
1854
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
1855
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:13', 'Ut nobis quia earum voluptatem.', '2009-12-11 11:38:13', 2)
1856
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1857
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Ullam sint "dolorem" debitis doloribus impedit facere eum. ')
1858
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1859
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Aut omnis "quia" earum et "corporis" nobis iure Et aut voluptas eius deserunt dolor. ')
1860
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
1861
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Odit corporis "accusamus" autem voluptatem quas est. ')
1862
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
1863
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Et soluta "laudantium" unde id maxime assumenda. ')
1864
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
1865
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:13', "story_id" = 1 WHERE "id" = 1
1866
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Odit corporis accusamus autem voluptatem') LIMIT 1
1867
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('odit-corporis-accusamus-autem-voluptatem-quas-est', '2009-12-11 11:38:13', 'Odit corporis accusamus autem voluptatem quas est.', '2009-12-11 11:38:13', 2, 'Autem minima "porro" repellat. ', NULL, NULL)
1868
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
1869
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:13', 'Ullam sint dolorem debitis doloribus impedit facere eum.', '2009-12-11 11:38:13', 3)
1870
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
1871
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Illo nobis "sunt" ratione. ')
1872
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
1873
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Quam est "voluptatem" nihil Omnis "vitae" maiores ad. ')
1874
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
1875
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Placeat doloribus "incidunt" saepe minus maiores et rerum. ')
1876
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
1877
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Eligendi blanditiis "cum" rerum esse mollitia. ')
1878
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
1879
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:13', "story_id" = 1 WHERE "id" = 2
1880
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'addison') LIMIT 1
1881
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'woodrow@schowalter.com') LIMIT 1
1882
+ User Create (0.2ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'c2c30d3135fbbf076daffab01a8010d3c8f75ac1', '2009-12-11 11:38:13', '4d26241fe43e06138a674132046382bfb8933900', NULL, '2009-12-11 11:38:13', NULL, 'addison', 'woodrow@schowalter.com')
1883
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1884
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" 
1885
+
1886
+
1887
+ Processing StoriesController#create (for 0.0.0.0 at 2009-12-11 11:38:13) [POST]
1888
+ Parameters: {"story"=>{"title"=>"Et soluta laudantium unde id maxime assumenda.", "points"=>2, "description"=>"Inventore et \"ea\" harum eveniet facilis occaecati voluptas ratione. "}}
1889
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1890
+ Iteration Load (0.1ms) SELECT * FROM "iterations" 
1891
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Et soluta laudantium unde id maxime assu') LIMIT 1
1892
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('et-soluta-laudantium-unde-id-maxime-assumenda', '2009-12-11 11:38:13', 'Et soluta laudantium unde id maxime assumenda.', '2009-12-11 11:38:13', 2, 'Inventore et "ea" harum eveniet facilis occaecati voluptas ratione. ', NULL, NULL)
1893
+ Redirected to http://test.host/stories
1894
+ Completed in 8ms (DB: 10) | 302 Found [http://test.host/stories?story%5Bdescription%5D=Inventore+et+%22ea%22+harum+eveniet+facilis+occaecati+voluptas+ratione.+&story%5Bpoints%5D=2&story%5Btitle%5D=Et+soluta+laudantium+unde+id+maxime+assumenda.]
1895
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" 
1896
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" 
1897
+ Iteration Create (0.3ms) INSERT INTO "iterations" ("name", "start_date", "created_at", "updated_at", "release_id", "velocity", "end_date") VALUES('---
1898
+ - quasi
1899
+ - occaecati
1900
+ - nobis
1901
+ ', '2009-12-11 00:00:00', '2009-12-11 11:38:13', '2009-12-11 11:38:13', NULL, 1, '2009-12-25 00:00:00')
1902
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
1903
+
1904
+
1905
+ Processing StoriesController#create (for 0.0.0.0 at 2009-12-11 11:38:13) [POST]
1906
+ Parameters: {"story"=>{"title"=>"Autem minima porro repellat.", "points"=>2, "description"=>"Molestias quam \"quo\" sint voluptates magnam officia vitae. ", "iteration_id"=>1}}
1907
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
1908
+ Story Load (0.3ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Autem minima porro repellat.') LIMIT 1
1909
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('autem-minima-porro-repellat', '2009-12-11 11:38:13', 'Autem minima porro repellat.', '2009-12-11 11:38:13', 2, 'Molestias quam "quo" sint voluptates magnam officia vitae. ', NULL, 1)
1910
+ Redirected to http://test.host/stories
1911
+ Completed in 7ms (DB: 2) | 302 Found [http://test.host/stories?story%5Bdescription%5D=Inventore+et+%22ea%22+harum+eveniet+facilis+occaecati+voluptas+ratione.+&story%5Bpoints%5D=2&story%5Btitle%5D=Et+soluta+laudantium+unde+id+maxime+assumenda.]
1912
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" 
1913
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
1914
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Illo nobis sunt ratione.') LIMIT 1
1915
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('illo-nobis-sunt-ratione', '2009-12-11 11:38:13', 'Illo nobis sunt ratione.', '2009-12-11 11:38:13', 2, 'Consequuntur exercitationem "reprehenderit" autem dolorem ut ea voluptatem. ', NULL, NULL)
1916
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1917
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Eligendi blanditiis cum rerum esse molli') LIMIT 1
1918
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('eligendi-blanditiis-cum-rerum-esse-mollitia', '2009-12-11 11:38:13', 'Eligendi blanditiis cum rerum esse mollitia.', '2009-12-11 11:38:13', 2, 'Numquam aliquam "qui" doloribus mollitia architecto et excepturi. ', NULL, NULL)
1919
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
1920
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:13', 'Placeat doloribus incidunt saepe minus maiores et rerum.', '2009-12-11 11:38:13', 2)
1921
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1922
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Sequi laudantium "similique" consequatur totam ut asperiores. ')
1923
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1924
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Magnam officia "blanditiis" recusandae temporibus "et" amet eaque adipisci Alias voluptate neque qui nostrum. ')
1925
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
1926
+ Outcome Create (0.5ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Delectus dolor "animi" nobis nihil. ')
1927
+ Outcome Load (0.7ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
1928
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Sint alias "ut" quia dolorem qui eligendi quas. ')
1929
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
1930
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:13', "story_id" = 1 WHERE "id" = 1
1931
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Molestias quam quo sint voluptates magna') LIMIT 1
1932
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('molestias-quam-quo-sint-voluptates-magnam-officia-vitae', '2009-12-11 11:38:13', 'Molestias quam quo sint voluptates magnam officia vitae.', '2009-12-11 11:38:13', 2, 'Similique quia "iusto" porro amet distinctio ut sed quos. ', NULL, NULL)
1933
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
1934
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:13', 'Inventore et ea harum eveniet facilis occaecati voluptas ratione.', '2009-12-11 11:38:13', 3)
1935
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
1936
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Qui est "neque" alias voluptas ullam. ')
1937
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
1938
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Accusantium voluptatum "rerum" eos hic "Et" voluptatum sint nesciunt voluptate qui rerum est. ')
1939
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
1940
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Inventore ea "quae" voluptatum consequatur nihil esse saepe. ')
1941
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
1942
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Asperiores omnis "eaque" sed veniam dolor. ')
1943
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
1944
+ Scenario Update (0.1ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:13', "story_id" = 1 WHERE "id" = 2
1945
+ User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'jerry') LIMIT 1
1946
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'rosalee_kulas@ankunding.ca') LIMIT 1
1947
+ User Create (0.2ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'b1e22d3bb8116db4c80fa6df516fa1ef87b87f0e', '2009-12-11 11:38:13', 'e87d552588260e6a861d930ff7f0d4a9ab348a5c', NULL, '2009-12-11 11:38:13', NULL, 'jerry', 'rosalee_kulas@ankunding.ca')
1948
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1949
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" 
1950
+
1951
+
1952
+ Processing StoriesController#create (for 0.0.0.0 at 2009-12-11 11:38:13) [POST]
1953
+ Parameters: {"story"=>{"title"=>"Consequuntur exercitationem reprehenderit autem dolorem ut ea voluptatem.", "points"=>2, "description"=>"Perspiciatis adipisci \"aliquam\" libero architecto iure. "}}
1954
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
1955
+ Iteration Load (0.1ms) SELECT * FROM "iterations" 
1956
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Consequuntur exercitationem reprehenderi') LIMIT 1
1957
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('consequuntur-exercitationem-reprehenderit-autem-dolorem-ut-ea-voluptatem', '2009-12-11 11:38:13', 'Consequuntur exercitationem reprehenderit autem dolorem ut ea voluptatem.', '2009-12-11 11:38:13', 2, 'Perspiciatis adipisci "aliquam" libero architecto iure. ', NULL, NULL)
1958
+ Redirected to http://test.host/stories
1959
+ Completed in 9ms (DB: 11) | 302 Found [http://test.host/stories?story%5Bdescription%5D=Perspiciatis+adipisci+%22aliquam%22+libero+architecto+iure.+&story%5Bpoints%5D=2&story%5Btitle%5D=Consequuntur+exercitationem+reprehenderit+autem+dolorem+ut+ea+voluptatem.]
1960
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" 
1961
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Numquam aliquam qui doloribus mollitia a') LIMIT 1
1962
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('numquam-aliquam-qui-doloribus-mollitia-architecto-et-excepturi', '2009-12-11 11:38:13', 'Numquam aliquam qui doloribus mollitia architecto et excepturi.', '2009-12-11 11:38:13', 2, 'Exercitationem voluptatibus "ut" sunt adipisci dicta repellendus est. ', NULL, NULL)
1963
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
1964
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Delectus dolor animi nobis nihil.') LIMIT 1
1965
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('delectus-dolor-animi-nobis-nihil', '2009-12-11 11:38:13', 'Delectus dolor animi nobis nihil.', '2009-12-11 11:38:13', 2, 'Quidem corporis "voluptas" dolores ea amet. ', NULL, NULL)
1966
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
1967
+ Scenario Create (0.3ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:13', 'Sequi laudantium similique consequatur totam ut asperiores.', '2009-12-11 11:38:13', 2)
1968
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
1969
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Quae ad "dolorem" magnam. ')
1970
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
1971
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Molestiae quia "vitae" quos Voluptates "tempora" atque quis. ')
1972
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
1973
+ Outcome Create (8.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Odit soluta "quod" labore dolor ut voluptate assumenda. ')
1974
+ Outcome Load (0.4ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
1975
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:13', '2009-12-11 11:38:13', 'Molestias modi "esse" ea quis aut eligendi voluptatem. ')
1976
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
1977
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:14', "story_id" = 1 WHERE "id" = 1
1978
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Similique quia iusto porro amet distinct') LIMIT 1
1979
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('similique-quia-iusto-porro-amet-distinctio-ut-sed-quos', '2009-12-11 11:38:14', 'Similique quia iusto porro amet distinctio ut sed quos.', '2009-12-11 11:38:14', 2, 'Nulla ea "quam" optio explicabo. ', NULL, NULL)
1980
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
1981
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:14', 'Sint alias ut quia dolorem qui eligendi quas.', '2009-12-11 11:38:14', 3)
1982
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
1983
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Sed quia "et" cumque nulla quia. ')
1984
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
1985
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Totam corrupti "dolor" quo animi "nemo" Autem aliquam non reiciendis. ')
1986
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
1987
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Soluta maxime "distinctio" molestias. ')
1988
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
1989
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Sapiente harum "quos" enim sint a. ')
1990
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
1991
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:14', "story_id" = 1 WHERE "id" = 2
1992
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'lucinda') LIMIT 1
1993
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'nella_torp@feeney.com') LIMIT 1
1994
+ User Create (0.2ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '26474fd5be1f361d7fee9c51f3b8205348933965', '2009-12-11 11:38:14', '9079b81f54da4ef8b63deaa22fc37389a272923b', NULL, '2009-12-11 11:38:14', NULL, 'lucinda', 'nella_torp@feeney.com')
1995
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1996
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" 
1997
+
1998
+
1999
+ Processing StoriesController#create (for 0.0.0.0 at 2009-12-11 11:38:14) [POST]
2000
+ Parameters: {"story"=>{"title"=>"Qui est neque alias voluptas ullam.", "points"=>2, "description"=>"Nisi consequatur \"occaecati\" dolor consequatur molestias. "}}
2001
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
2002
+ Iteration Load (0.2ms) SELECT * FROM "iterations" 
2003
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Qui est neque alias voluptas ullam.') LIMIT 1
2004
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('qui-est-neque-alias-voluptas-ullam', '2009-12-11 11:38:14', 'Qui est neque alias voluptas ullam.', '2009-12-11 11:38:14', 2, 'Nisi consequatur "occaecati" dolor consequatur molestias. ', NULL, NULL)
2005
+ Redirected to http://test.host/stories
2006
+ Completed in 8ms (DB: 19) | 302 Found [http://test.host/stories?story%5Bdescription%5D=Nisi+consequatur+%22occaecati%22+dolor+consequatur+molestias.+&story%5Bpoints%5D=2&story%5Btitle%5D=Qui+est+neque+alias+voluptas+ullam.]
2007
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" 
2008
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Inventore ea quae voluptatum consequatur') LIMIT 1
2009
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('inventore-ea-quae-voluptatum-consequatur-nihil-esse-saepe', '2009-12-11 11:38:14', 'Inventore ea quae voluptatum consequatur nihil esse saepe.', '2009-12-11 11:38:14', 2, 'Reiciendis occaecati "officia" et excepturi placeat. ', NULL, NULL)
2010
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
2011
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Perspiciatis adipisci aliquam libero arc') LIMIT 1
2012
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('perspiciatis-adipisci-aliquam-libero-architecto-iure', '2009-12-11 11:38:14', 'Perspiciatis adipisci aliquam libero architecto iure.', '2009-12-11 11:38:14', 2, 'Libero quia "error" est sequi dolore sapiente provident aperiam. ', NULL, NULL)
2013
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
2014
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:14', 'Asperiores omnis eaque sed veniam dolor.', '2009-12-11 11:38:14', 2)
2015
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
2016
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Dolor corrupti "blanditiis" cumque dolorum et. ')
2017
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
2018
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'In voluptas "nulla" maxime voluptatem "tenetur" soluta voluptatem voluptatum Architecto temporibus sit voluptatem. ')
2019
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
2020
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Velit earum "et" reprehenderit aliquam delectus odio. ')
2021
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
2022
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'At aut "voluptatem" aliquam optio illum praesentium. ')
2023
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
2024
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:14', "story_id" = 1 WHERE "id" = 1
2025
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Quidem corporis voluptas dolores ea amet') LIMIT 1
2026
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('quidem-corporis-voluptas-dolores-ea-amet', '2009-12-11 11:38:14', 'Quidem corporis voluptas dolores ea amet.', '2009-12-11 11:38:14', 2, 'Voluptas quia "sed" incidunt odit animi explicabo. ', NULL, NULL)
2027
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
2028
+ Scenario Create (0.1ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:14', 'Exercitationem voluptatibus ut sunt adipisci dicta repellendus est.', '2009-12-11 11:38:14', 3)
2029
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
2030
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Amet eum "suscipit" tempore tempora fugiat. ')
2031
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
2032
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Quis accusamus "quam" quas commodi "modi" accusantium quis Aut occaecati accusantium assumenda minima sint. ')
2033
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
2034
+ Outcome Create (0.3ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Dolorem rerum "facilis" possimus delectus debitis autem deleniti dolor. ')
2035
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
2036
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Quo reiciendis "tempora" nam et enim et nostrum. ')
2037
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
2038
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:14', "story_id" = 1 WHERE "id" = 2
2039
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'hosea') LIMIT 1
2040
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'louie@halvorson.info') LIMIT 1
2041
+ User Create (0.2ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '45bd1ce4cad32a995fad1142a1bd6576fb2a544d', '2009-12-11 11:38:14', '0776ab3b90fcdc76e2f6ca687e211ef0ac7834ef', NULL, '2009-12-11 11:38:14', NULL, 'hosea', 'louie@halvorson.info')
2042
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
2043
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" 
2044
+
2045
+
2046
+ Processing StoriesController#destroy (for 0.0.0.0 at 2009-12-11 11:38:14) [DELETE]
2047
+ Parameters: {"id"=>#<ActiveSupport::Multibyte::Chars:0x7f2faaddb9c8 @wrapped_string="inventore-ea-quae-voluptatum-consequatur-nihil-esse-saepe">}
2048
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
2049
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'inventore-ea-quae-voluptatum-consequatur-nihil-esse-saepe') LIMIT 1
2050
+ Scenario Load (0.5ms) SELECT * FROM "scenarios" WHERE ("scenarios".story_id = 1) 
2051
+ Outcome Load (0.5ms) SELECT * FROM "outcomes" WHERE ("outcomes".scenario_id = 1) 
2052
+ Outcome Destroy (0.1ms) DELETE FROM "outcomes" WHERE "id" = 1
2053
+ Outcome Destroy (0.2ms) DELETE FROM "outcomes" WHERE "id" = 2
2054
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions".scenario_id = 1) 
2055
+ Precondition Destroy (0.1ms) DELETE FROM "preconditions" WHERE "id" = 1
2056
+ Precondition Destroy (0.1ms) DELETE FROM "preconditions" WHERE "id" = 2
2057
+ Scenario Destroy (0.1ms) DELETE FROM "scenarios" WHERE "id" = 1
2058
+ Outcome Load (0.5ms) SELECT * FROM "outcomes" WHERE ("outcomes".scenario_id = 2) 
2059
+ Outcome Destroy (0.1ms) DELETE FROM "outcomes" WHERE "id" = 3
2060
+ Outcome Destroy (0.1ms) DELETE FROM "outcomes" WHERE "id" = 4
2061
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions".scenario_id = 2) 
2062
+ Precondition Destroy (0.1ms) DELETE FROM "preconditions" WHERE "id" = 3
2063
+ Precondition Destroy (0.1ms) DELETE FROM "preconditions" WHERE "id" = 4
2064
+ Scenario Destroy (0.1ms) DELETE FROM "scenarios" WHERE "id" = 2
2065
+ Story Destroy (0.1ms) DELETE FROM "stories" WHERE "id" = 1
2066
+ Redirected to http://test.host/stories
2067
+ Completed in 17ms (DB: 14) | 302 Found [http://test.host/stories/inventore-ea-quae-voluptatum-consequatur-nihil-esse-saepe]
2068
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" 
2069
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Quae ad dolorem magnam.') LIMIT 1
2070
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('quae-ad-dolorem-magnam', '2009-12-11 11:38:14', 'Quae ad dolorem magnam.', '2009-12-11 11:38:14', 2, 'Rerum recusandae "iste" porro. ', NULL, NULL)
2071
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
2072
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Molestias modi esse ea quis aut eligendi') LIMIT 1
2073
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('molestias-modi-esse-ea-quis-aut-eligendi-voluptatem', '2009-12-11 11:38:14', 'Molestias modi esse ea quis aut eligendi voluptatem.', '2009-12-11 11:38:14', 2, 'Nihil et "quis" sint voluptatem aspernatur. ', NULL, NULL)
2074
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
2075
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:14', 'Odit soluta quod labore dolor ut voluptate assumenda.', '2009-12-11 11:38:14', 2)
2076
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
2077
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Autem rem "iusto" sint. ')
2078
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
2079
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Inventore expedita "neque" est corporis "qui" Aut aut quo sit repellendus omnis eum. ')
2080
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
2081
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Qui est "dolorem" culpa eveniet fugiat a. ')
2082
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
2083
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Ut numquam "totam" sequi ratione dolorem ut consequatur dolores. ')
2084
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
2085
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:14', "story_id" = 1 WHERE "id" = 1
2086
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Sed quia et cumque nulla quia.') LIMIT 1
2087
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('sed-quia-et-cumque-nulla-quia', '2009-12-11 11:38:14', 'Sed quia et cumque nulla quia.', '2009-12-11 11:38:14', 2, 'Est aut "ullam" delectus voluptatem. ', NULL, NULL)
2088
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
2089
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:14', 'Nulla ea quam optio explicabo.', '2009-12-11 11:38:14', 3)
2090
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
2091
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Rerum vitae "optio" tempora sunt alias. ')
2092
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
2093
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Facilis commodi "odit" quisquam Porro "voluptatem" aut facere. ')
2094
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
2095
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Sunt esse "aliquid" omnis molestias et. ')
2096
+ Outcome Load (0.4ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
2097
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Quas minima "soluta" velit et alias natus est. ')
2098
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
2099
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:14', "story_id" = 1 WHERE "id" = 2
2100
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'karli') LIMIT 1
2101
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'winnifred@brown.us') LIMIT 1
2102
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '927d275a79a0f8c660e1428e7dcd06bc0fc4c8ec', '2009-12-11 11:38:14', '2e9892766d7f48806147ef5bca5235e6fd6117dc', NULL, '2009-12-11 11:38:14', NULL, 'karli', 'winnifred@brown.us')
2103
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
2104
+
2105
+
2106
+ Processing StoriesController#generate_feature (for 0.0.0.0 at 2009-12-11 11:38:14) [GET]
2107
+ Parameters: {"id"=>#<ActiveSupport::Multibyte::Chars:0x7f2faad0d758 @wrapped_string="quae-ad-dolorem-magnam">, "path"=>"test/features/"}
2108
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'quae-ad-dolorem-magnam') LIMIT 1
2109
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "scenarios" WHERE ("scenarios".story_id = 1) 
2110
+ Scenario Load (0.4ms) SELECT * FROM "scenarios" WHERE ("scenarios".story_id = 1) 
2111
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "preconditions" WHERE ("preconditions".scenario_id = 1) 
2112
+ Precondition Load (0.5ms) SELECT * FROM "preconditions" WHERE ("preconditions".scenario_id = 1) 
2113
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "outcomes" WHERE ("outcomes".scenario_id = 1) 
2114
+ Outcome Load (0.5ms) SELECT * FROM "outcomes" WHERE ("outcomes".scenario_id = 1) 
2115
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "preconditions" WHERE ("preconditions".scenario_id = 2) 
2116
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions".scenario_id = 2) 
2117
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "outcomes" WHERE ("outcomes".scenario_id = 2) 
2118
+ Outcome Load (0.5ms) SELECT * FROM "outcomes" WHERE ("outcomes".scenario_id = 2) 
2119
+ Completed in 15ms (View: 0, DB: 13) | 200 OK [http://test.host/stories/quae-ad-dolorem-magnam/generate_feature?path=test%2Ffeatures%2F]
2120
+ Story Load (0.3ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Soluta maxime distinctio molestias.') LIMIT 1
2121
+ Story Create (0.4ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('soluta-maxime-distinctio-molestias', '2009-12-11 11:38:14', 'Soluta maxime distinctio molestias.', '2009-12-11 11:38:14', 2, 'Ut culpa "dolorem" officiis numquam quia voluptatem nihil. ', NULL, NULL)
2122
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
2123
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Nisi consequatur occaecati dolor consequ') LIMIT 1
2124
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('nisi-consequatur-occaecati-dolor-consequatur-molestias', '2009-12-11 11:38:14', 'Nisi consequatur occaecati dolor consequatur molestias.', '2009-12-11 11:38:14', 2, 'Non et "perspiciatis" rem in. ', NULL, NULL)
2125
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
2126
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:14', 'Sapiente harum quos enim sint a.', '2009-12-11 11:38:14', 2)
2127
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
2128
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Nam quia "eum" nesciunt aperiam dolorem natus sed dolores. ')
2129
+ Precondition Load (0.6ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
2130
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Quo est "dignissimos" ut Sunt "laboriosam" excepturi delectus. ')
2131
+ Precondition Load (0.5ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
2132
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Consequatur ex "id" dolores incidunt impedit dolor dolorem. ')
2133
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
2134
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Ipsam itaque "in" non cum. ')
2135
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
2136
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:14', "story_id" = 1 WHERE "id" = 1
2137
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Libero quia error est sequi dolore sapie') LIMIT 1
2138
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('libero-quia-error-est-sequi-dolore-sapiente-provident-aperiam', '2009-12-11 11:38:14', 'Libero quia error est sequi dolore sapiente provident aperiam.', '2009-12-11 11:38:14', 2, 'Voluptas eum "aut" soluta tenetur nihil eos repellat consequatur. ', NULL, NULL)
2139
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
2140
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:14', 'Reiciendis occaecati officia et excepturi placeat.', '2009-12-11 11:38:14', 3)
2141
+ Scenario Load (0.4ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
2142
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Nostrum autem "facilis" voluptates. ')
2143
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
2144
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Et culpa "autem" possimus Qui "dolores" excepturi laudantium. ')
2145
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
2146
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Voluptate omnis "possimus" vel repellendus dolore vel dolor. ')
2147
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
2148
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Impedit suscipit "rerum" et et commodi sunt animi eos. ')
2149
+ Outcome Load (0.4ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
2150
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:14', "story_id" = 1 WHERE "id" = 2
2151
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'fatima') LIMIT 1
2152
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'donnie@armstrong.name') LIMIT 1
2153
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'dffe1ad68672a9cffdb47eef43d0dc76b28f72ab', '2009-12-11 11:38:14', '5d6489971806b55b9e71a25c2720ac34281abd45', NULL, '2009-12-11 11:38:14', NULL, 'fatima', 'donnie@armstrong.name')
2154
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
2155
+
2156
+
2157
+ Processing StoriesController#new (for 0.0.0.0 at 2009-12-11 11:38:14) [GET]
2158
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
2159
+ Iteration Load (0.1ms) SELECT * FROM "iterations" 
2160
+ Rendering template within layouts/main
2161
+ Rendering stories/new
2162
+ Rendered stories/_form (3.1ms)
2163
+ Rendered layouts/_meta (0.2ms)
2164
+ Rendered layouts/_header (0.3ms)
2165
+ Rendered layouts/_footer (0.1ms)
2166
+ Completed in 14ms (View: 11, DB: 11) | 200 OK [http://test.host/stories/new]
2167
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Dolor corrupti blanditiis cumque dolorum') LIMIT 1
2168
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('dolor-corrupti-blanditiis-cumque-dolorum-et', '2009-12-11 11:38:14', 'Dolor corrupti blanditiis cumque dolorum et.', '2009-12-11 11:38:14', 2, 'Voluptatem nihil "et" deserunt aut molestias et et nostrum. ', NULL, NULL)
2169
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
2170
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'At aut voluptatem aliquam optio illum pr') LIMIT 1
2171
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('at-aut-voluptatem-aliquam-optio-illum-praesentium', '2009-12-11 11:38:14', 'At aut voluptatem aliquam optio illum praesentium.', '2009-12-11 11:38:14', 2, 'Excepturi repellat "enim" quas qui. ', NULL, NULL)
2172
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
2173
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:14', 'Velit earum et reprehenderit aliquam delectus odio.', '2009-12-11 11:38:14', 2)
2174
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
2175
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Est quae "voluptatem" nam et ut laborum. ')
2176
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
2177
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Reprehenderit minima "autem" sed aut "sunt" Vel blanditiis debitis fuga. ')
2178
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
2179
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Maiores architecto "velit" id qui quos. ')
2180
+ Outcome Load (0.4ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
2181
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Soluta ab "quis" accusantium totam. ')
2182
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
2183
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:14', "story_id" = 1 WHERE "id" = 1
2184
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Amet eum suscipit tempore tempora fugiat') LIMIT 1
2185
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('amet-eum-suscipit-tempore-tempora-fugiat', '2009-12-11 11:38:14', 'Amet eum suscipit tempore tempora fugiat.', '2009-12-11 11:38:14', 2, 'Aliquam omnis "eius" architecto corporis. ', NULL, NULL)
2186
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
2187
+ Scenario Create (0.1ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:14', 'Voluptas quia sed incidunt odit animi explicabo.', '2009-12-11 11:38:14', 3)
2188
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
2189
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Iure et "pariatur" voluptatem. ')
2190
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
2191
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Voluptas incidunt "optio" consequatur eveniet "beatae" quia magni Cum veniam impedit consequatur corrupti. ')
2192
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
2193
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Dolores eligendi "quia" et qui. ')
2194
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
2195
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Quod assumenda "minus" illo. ')
2196
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
2197
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:14', "story_id" = 1 WHERE "id" = 2
2198
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'lavon') LIMIT 1
2199
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'elissa_weimann@marks.co.uk') LIMIT 1
2200
+ User Create (0.2ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '83ba1ba2c4b549c88d9e9bd2c779d31e721a8ba8', '2009-12-11 11:38:14', '3aff0110aee8def2cbf582345da45fd814b80e53', NULL, '2009-12-11 11:38:14', NULL, 'lavon', 'elissa_weimann@marks.co.uk')
2201
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
2202
+
2203
+
2204
+ Processing StoriesController#edit (for 0.0.0.0 at 2009-12-11 11:38:14) [GET]
2205
+ Parameters: {"id"=>#<ActiveSupport::Multibyte::Chars:0x7f2faaed61c0 @wrapped_string="dolor-corrupti-blanditiis-cumque-dolorum-et">}
2206
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
2207
+ Iteration Load (0.1ms) SELECT * FROM "iterations" 
2208
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'dolor-corrupti-blanditiis-cumque-dolorum-et') LIMIT 1
2209
+ Rendering template within layouts/main
2210
+ Rendering stories/edit
2211
+ Rendered stories/_form (3.5ms)
2212
+ Rendered layouts/_meta (0.1ms)
2213
+ Rendered layouts/_header (0.3ms)
2214
+ Rendered layouts/_footer (0.1ms)
2215
+ Completed in 22ms (View: 18, DB: 10) | 200 OK [http://test.host/stories/dolor-corrupti-blanditiis-cumque-dolorum-et/edit]
2216
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Dolorem rerum facilis possimus delectus ') LIMIT 1
2217
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('dolorem-rerum-facilis-possimus-delectus-debitis-autem-deleniti-dolor', '2009-12-11 11:38:14', 'Dolorem rerum facilis possimus delectus debitis autem deleniti dolor.', '2009-12-11 11:38:14', 2, 'Ut vel "dolore" excepturi voluptate ab voluptatibus et sint. ', NULL, NULL)
2218
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
2219
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Rerum recusandae iste porro.') LIMIT 1
2220
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('rerum-recusandae-iste-porro', '2009-12-11 11:38:14', 'Rerum recusandae iste porro.', '2009-12-11 11:38:14', 2, 'Qui nostrum "non" laudantium delectus. ', NULL, NULL)
2221
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
2222
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:14', 'Quo reiciendis tempora nam et enim et nostrum.', '2009-12-11 11:38:14', 2)
2223
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
2224
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Veniam dolores "quibusdam" in sit eligendi quidem totam est. ')
2225
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
2226
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Quo dignissimos "at" suscipit rerum "possimus" vero Hic exercitationem harum nihil eius facere in impedit. ')
2227
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
2228
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Nam facilis "ipsum" aut blanditiis alias quae non assumenda. ')
2229
+ Outcome Load (0.4ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
2230
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Eveniet distinctio "rerum" voluptas nihil ullam facilis cum. ')
2231
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
2232
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:14', "story_id" = 1 WHERE "id" = 1
2233
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Autem rem iusto sint.') LIMIT 1
2234
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('autem-rem-iusto-sint', '2009-12-11 11:38:14', 'Autem rem iusto sint.', '2009-12-11 11:38:14', 2, 'Tempore qui "in" quo iure enim quos earum. ', NULL, NULL)
2235
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
2236
+ Scenario Create (0.1ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:14', 'Nihil et quis sint voluptatem aspernatur.', '2009-12-11 11:38:14', 3)
2237
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
2238
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Inventore quam "impedit" dignissimos. ')
2239
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
2240
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Rerum sint "est" a distinctio "rerum" commodi Porro praesentium repudiandae ut animi. ')
2241
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
2242
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Aut sint "et" occaecati aliquam. ')
2243
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
2244
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Dolore sit "ex" qui. ')
2245
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
2246
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:14', "story_id" = 1 WHERE "id" = 2
2247
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'geovanni') LIMIT 1
2248
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'emelia@stokes.co.uk') LIMIT 1
2249
+ User Create (0.2ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'ed0e0b32dec5cb09fdb4fca7790cf64dce3a0956', '2009-12-11 11:38:14', '64d981cd3e4648ec93b87fd8698a4935ccdbc21a', NULL, '2009-12-11 11:38:14', NULL, 'geovanni', 'emelia@stokes.co.uk')
2250
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
2251
+
2252
+
2253
+ Processing StoriesController#index (for 0.0.0.0 at 2009-12-11 11:38:14) [GET]
2254
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
2255
+ Iteration Load (0.1ms) SELECT * FROM "iterations" 
2256
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE (iteration_id IS NULL) 
2257
+ Rendering template within layouts/main
2258
+ Rendering stories/index
2259
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE (iteration_id IS NOT NULL) 
2260
+ Rendered stories/_story (20.0ms)
2261
+ Rendered stories/_story (11.8ms)
2262
+ Rendered stories/_story (11.3ms)
2263
+ Rendered layouts/_meta (0.1ms)
2264
+ Rendered layouts/_header (0.3ms)
2265
+ Rendered layouts/_footer (0.1ms)
2266
+ Completed in 58ms (View: 54, DB: 10) | 200 OK [http://test.host/stories]
2267
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Qui est dolorem culpa eveniet fugiat a.') LIMIT 1
2268
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('qui-est-dolorem-culpa-eveniet-fugiat-a', '2009-12-11 11:38:14', 'Qui est dolorem culpa eveniet fugiat a.', '2009-12-11 11:38:14', 2, 'Suscipit exercitationem "totam" reprehenderit soluta eius dicta id labore. ', NULL, NULL)
2269
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
2270
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Est aut ullam delectus voluptatem.') LIMIT 1
2271
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('est-aut-ullam-delectus-voluptatem', '2009-12-11 11:38:14', 'Est aut ullam delectus voluptatem.', '2009-12-11 11:38:14', 2, 'Provident ratione "velit" laborum voluptatem reiciendis totam harum aliquam. ', NULL, NULL)
2272
+ Story Load (10.8ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
2273
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:14', 'Ut numquam totam sequi ratione dolorem ut consequatur dolores.', '2009-12-11 11:38:14', 2)
2274
+ Scenario Load (0.4ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
2275
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Soluta totam "corporis" optio. ')
2276
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
2277
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'In ab "eos" ullam aspernatur "dolore" dolorem pariatur repellat Et autem sunt ex temporibus. ')
2278
+ Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
2279
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Libero excepturi "sit" dolorem laudantium nihil sed. ')
2280
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
2281
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Voluptatibus quos "vero" minima possimus qui itaque voluptatem. ')
2282
+ Outcome Load (0.4ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
2283
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:14', "story_id" = 1 WHERE "id" = 1
2284
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Sunt esse aliquid omnis molestias et.') LIMIT 1
2285
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('sunt-esse-aliquid-omnis-molestias-et', '2009-12-11 11:38:14', 'Sunt esse aliquid omnis molestias et.', '2009-12-11 11:38:14', 2, 'Ipsam quasi "delectus" ea. ', NULL, NULL)
2286
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
2287
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:14', 'Rerum vitae optio tempora sunt alias.', '2009-12-11 11:38:14', 3)
2288
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
2289
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Est et "quibusdam" velit ut quaerat. ')
2290
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
2291
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Deleniti consequatur "et" omnis debitis "Atque" reprehenderit et voluptas ad voluptatem vel sint culpa. ')
2292
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
2293
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Odit eum "ut" sunt eligendi aut iusto rerum recusandae. ')
2294
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
2295
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:14', '2009-12-11 11:38:14', 'Doloribus in "sequi" delectus impedit omnis labore. ')
2296
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
2297
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:14', "story_id" = 1 WHERE "id" = 2
2298
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'horace') LIMIT 1
2299
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'dagmar_leffler@beier.com') LIMIT 1
2300
+ User Create (0.2ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'fd32d21f17880277edf3714c43b125d506763c25', '2009-12-11 11:38:14', '1171e66aba06eab34cb2a209f0bd82c2367694d0', NULL, '2009-12-11 11:38:14', NULL, 'horace', 'dagmar_leffler@beier.com')
2301
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
2302
+
2303
+
2304
+ Processing StoriesController#update (for 0.0.0.0 at 2009-12-11 11:38:14) [PUT]
2305
+ Parameters: {"story"=>{"description"=>""}, "id"=>#<ActiveSupport::Multibyte::Chars:0x7f2faafa2ea0 @wrapped_string="qui-est-dolorem-culpa-eveniet-fugiat-a">}
2306
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
2307
+ Iteration Load (0.1ms) SELECT * FROM "iterations" 
2308
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'qui-est-dolorem-culpa-eveniet-fugiat-a') LIMIT 1
2309
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Qui est dolorem culpa eveniet fugiat a.' AND "stories".id <> 1) LIMIT 1
2310
+ Rendering template within layouts/main
2311
+ Rendering stories/edit
2312
+ Rendered stories/_form (5.7ms)
2313
+ Rendered layouts/_meta (0.1ms)
2314
+ Rendered layouts/_header (0.3ms)
2315
+ Rendered layouts/_footer (0.1ms)
2316
+ Completed in 28ms (View: 21, DB: 21) | 200 OK [http://test.host/stories/qui-est-dolorem-culpa-eveniet-fugiat-a?story%5Bdescription%5D=]
2317
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Quas minima soluta velit et alias natus ') LIMIT 1
2318
+ Story Create (0.3ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('quas-minima-soluta-velit-et-alias-natus-est', '2009-12-11 11:38:14', 'Quas minima soluta velit et alias natus est.', '2009-12-11 11:38:14', 2, 'Qui provident "blanditiis" et voluptas non. ', NULL, NULL)
2319
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."id" = 1) 
2320
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Non et perspiciatis rem in.') LIMIT 1
2321
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('non-et-perspiciatis-rem-in', '2009-12-11 11:38:14', 'Non et perspiciatis rem in.', '2009-12-11 11:38:14', 2, 'Voluptatem laboriosam "consequatur" dolores fugit repudiandae iste aut. ', NULL, NULL)
2322
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 2) 
2323
+ Scenario Create (0.2ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:15', 'Ut culpa dolorem officiis numquam quia voluptatem nihil.', '2009-12-11 11:38:15', 2)
2324
+ Scenario Load (0.5ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 1) 
2325
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:15', '2009-12-11 11:38:15', 'Ipsa rem "inventore" esse quae necessitatibus qui voluptatem. ')
2326
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 1) 
2327
+ Precondition Create (0.2ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:15', '2009-12-11 11:38:15', 'Dolor et "fugit" suscipit Quis "et" est unde nisi dolor doloremque sapiente velit. ')
2328
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 2) 
2329
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:15', '2009-12-11 11:38:15', 'Molestiae blanditiis "cum" dicta alias consequatur repudiandae quo. ')
2330
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 1) 
2331
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(1, '2009-12-11 11:38:15', '2009-12-11 11:38:15', 'Sint est "commodi" libero et. ')
2332
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 2) 
2333
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:15', "story_id" = 1 WHERE "id" = 1
2334
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Consequatur ex id dolores incidunt imped') LIMIT 1
2335
+ Story Create (0.2ms) INSERT INTO "stories" ("slug", "created_at", "title", "updated_at", "points", "description", "author_id", "iteration_id") VALUES('consequatur-ex-id-dolores-incidunt-impedit-dolor-dolorem', '2009-12-11 11:38:15', 'Consequatur ex id dolores incidunt impedit dolor dolorem.', '2009-12-11 11:38:15', 2, 'Aut nemo "rem" libero rerum amet. ', NULL, NULL)
2336
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."id" = 3) 
2337
+ Scenario Create (0.1ms) INSERT INTO "scenarios" ("created_at", "title", "updated_at", "story_id") VALUES('2009-12-11 11:38:15', 'Nam quia eum nesciunt aperiam dolorem natus sed dolores.', '2009-12-11 11:38:15', 3)
2338
+ Scenario Load (0.3ms) SELECT * FROM "scenarios" WHERE ("scenarios"."id" = 2) 
2339
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:15', '2009-12-11 11:38:15', 'Incidunt ipsum "quia" nostrum eum velit molestiae quis aperiam. ')
2340
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 3) 
2341
+ Precondition Create (0.1ms) INSERT INTO "preconditions" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:15', '2009-12-11 11:38:15', 'Rem facilis "amet" quia nesciunt "deserunt" et id unde Non quis officia soluta non iste ut autem. ')
2342
+ Precondition Load (0.3ms) SELECT * FROM "preconditions" WHERE ("preconditions"."id" = 4) 
2343
+ Outcome Create (0.2ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:15', '2009-12-11 11:38:15', 'Est laborum "inventore" minima doloribus delectus nihil voluptates perferendis. ')
2344
+ Outcome Load (0.3ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 3) 
2345
+ Outcome Create (0.1ms) INSERT INTO "outcomes" ("scenario_id", "created_at", "updated_at", "description") VALUES(2, '2009-12-11 11:38:15', '2009-12-11 11:38:15', 'Adipisci non "sit" aspernatur vel dolor aut. ')
2346
+ Outcome Load (0.4ms) SELECT * FROM "outcomes" WHERE ("outcomes"."id" = 4) 
2347
+ Scenario Update (0.2ms) UPDATE "scenarios" SET "updated_at" = '2009-12-11 11:38:15', "story_id" = 1 WHERE "id" = 2
2348
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'amely') LIMIT 1
2349
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'whitney.borer@olson.info') LIMIT 1
2350
+ User Create (0.2ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'ee4fb7229674c9bd745faa8620b6e3032c5a576f', '2009-12-11 11:38:15', 'ce60461c0425bcb6361b6b3c8874e9df0e711ec9', NULL, '2009-12-11 11:38:15', NULL, 'amely', 'whitney.borer@olson.info')
2351
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
2352
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" 
2353
+
2354
+
2355
+ Processing StoriesController#update (for 0.0.0.0 at 2009-12-11 11:38:15) [PUT]
2356
+ Parameters: {"story"=>{"description"=>"bar"}, "id"=>#<ActiveSupport::Multibyte::Chars:0x7f2faac3c0b8 @wrapped_string="quas-minima-soluta-velit-et-alias-natus-est">}
2357
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
2358
+ Iteration Load (0.1ms) SELECT * FROM "iterations" 
2359
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'quas-minima-soluta-velit-et-alias-natus-est') LIMIT 1
2360
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Quas minima soluta velit et alias natus ' AND "stories".id <> 1) LIMIT 1
2361
+ Story Update (0.3ms) UPDATE "stories" SET "updated_at" = '2009-12-11 11:38:15', "description" = 'bar' WHERE "id" = 1
2362
+ Redirected to http://test.host/stories/quas-minima-soluta-velit-et-alias-natus-est
2363
+ Completed in 11ms (DB: 11) | 302 Found [http://test.host/stories/quas-minima-soluta-velit-et-alias-natus-est?story%5Bdescription%5D=bar]
2364
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" 
2365
+ User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'yvonne') LIMIT 1
2366
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'bradley.kessler@nitzsche.uk') LIMIT 1
2367
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'ff9be09672e0048175094e0ee0c06c872dc6f502', '2009-12-11 11:38:15', '3ab42dc06b790e6a315b73583fbc9e7b8eefb15a', NULL, '2009-12-11 11:38:15', NULL, 'yvonne', 'bradley.kessler@nitzsche.uk')
2368
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
2369
+ UserRole Create (0.2ms) INSERT INTO "user_roles" ("name", "created_at", "updated_at", "story_id") VALUES('---
2370
+ - sapiente
2371
+ - et
2372
+ - aliquid
2373
+ ', '2009-12-11 11:38:15', '2009-12-11 11:38:15', NULL)
2374
+ UserRole Load (0.3ms) SELECT * FROM "user_roles" WHERE ("user_roles"."id" = 1) 
2375
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "user_roles" 
2376
+
2377
+
2378
+ Processing UserRolesController#create (for 0.0.0.0 at 2009-12-11 11:38:15) [POST]
2379
+ Parameters: {"user_role"=>{"name"=>"customer"}}
2380
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
2381
+ UserRole Create (0.2ms) INSERT INTO "user_roles" ("name", "created_at", "updated_at", "story_id") VALUES('customer', '2009-12-11 11:38:15', '2009-12-11 11:38:15', NULL)
2382
+ Redirected to http://test.host/user_roles/2
2383
+ Completed in 10ms (DB: 3) | 302 Found [http://test.host/user_roles?user_role%5Bname%5D=customer]
2384
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "user_roles" 
2385
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'bell') LIMIT 1
2386
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'amelia@marvinlockman.co.uk') LIMIT 1
2387
+ User Create (0.4ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '06a9e65cf9d05991723ab5b749c6f480125399d4', '2009-12-11 11:38:15', '673e73f7bc010178da2d08447b8b483d60078155', NULL, '2009-12-11 11:38:15', NULL, 'bell', 'amelia@marvinlockman.co.uk')
2388
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
2389
+ UserRole Create (0.2ms) INSERT INTO "user_roles" ("name", "created_at", "updated_at", "story_id") VALUES('---
2390
+ - voluptatum
2391
+ - ipsum
2392
+ - magni
2393
+ ', '2009-12-11 11:38:15', '2009-12-11 11:38:15', NULL)
2394
+ UserRole Load (0.4ms) SELECT * FROM "user_roles" WHERE ("user_roles"."id" = 1) 
2395
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "user_roles" 
2396
+
2397
+
2398
+ Processing UserRolesController#destroy (for 0.0.0.0 at 2009-12-11 11:38:15) [DELETE]
2399
+ Parameters: {"id"=>"1"}
2400
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
2401
+ UserRole Load (0.3ms) SELECT * FROM "user_roles" WHERE ("user_roles"."id" = 1) 
2402
+ UserRole Destroy (0.1ms) DELETE FROM "user_roles" WHERE "id" = 1
2403
+ Redirected to http://test.host/user_roles
2404
+ Completed in 4ms (DB: 3) | 302 Found [http://test.host/user_roles/1]
2405
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "user_roles" 
2406
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'shana') LIMIT 1
2407
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'damaris@paucek.ca') LIMIT 1
2408
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '103de2cea7f3ac6ed91daa084ef3bc15c0e2174b', '2009-12-11 11:38:15', 'e6d6f9eea3148fb778640678b77e74de0dc55a84', NULL, '2009-12-11 11:38:15', NULL, 'shana', 'damaris@paucek.ca')
2409
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
2410
+ UserRole Create (0.2ms) INSERT INTO "user_roles" ("name", "created_at", "updated_at", "story_id") VALUES('---
2411
+ - qui
2412
+ - et
2413
+ - et
2414
+ ', '2009-12-11 11:38:15', '2009-12-11 11:38:15', NULL)
2415
+ UserRole Load (0.4ms) SELECT * FROM "user_roles" WHERE ("user_roles"."id" = 1) 
2416
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "user_roles" 
2417
+
2418
+
2419
+ Processing UserRolesController#create (for 0.0.0.0 at 2009-12-11 11:38:15) [POST]
2420
+ Parameters: {"user_role"=>{"name"=>nil}}
2421
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
2422
+ Rendering template within layouts/main
2423
+ Rendering user_roles/new
2424
+ Rendered layouts/_meta (0.2ms)
2425
+ Rendered layouts/_header (0.4ms)
2426
+ Rendered layouts/_footer (0.1ms)
2427
+ Completed in 17ms (View: 14, DB: 3) | 200 OK [http://test.host/user_roles?user_role%5Bname%5D=]
2428
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "user_roles" 
2429
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'crystal') LIMIT 1
2430
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'vidal@roberts.name') LIMIT 1
2431
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'de030531fd57f438b67ab5501c7a0877d488fc4d', '2009-12-11 11:38:15', '83dde0af385c0ff80af9c8339faefb4fda645890', NULL, '2009-12-11 11:38:15', NULL, 'crystal', 'vidal@roberts.name')
2432
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
2433
+ UserRole Create (0.2ms) INSERT INTO "user_roles" ("name", "created_at", "updated_at", "story_id") VALUES('---
2434
+ - occaecati
2435
+ - ut
2436
+ - fugiat
2437
+ ', '2009-12-11 11:38:15', '2009-12-11 11:38:15', NULL)
2438
+ UserRole Load (0.3ms) SELECT * FROM "user_roles" WHERE ("user_roles"."id" = 1) 
2439
+
2440
+
2441
+ Processing UserRolesController#edit (for 0.0.0.0 at 2009-12-11 11:38:15) [GET]
2442
+ Parameters: {"id"=>"1"}
2443
+ User Load (10.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
2444
+ UserRole Load (0.4ms) SELECT * FROM "user_roles" WHERE ("user_roles"."id" = 1) 
2445
+ Rendering template within layouts/main
2446
+ Rendering user_roles/edit
2447
+ Rendered layouts/_meta (0.1ms)
2448
+ Rendered layouts/_header (0.3ms)
2449
+ Rendered layouts/_footer (0.1ms)
2450
+ Completed in 131ms (View: 11, DB: 13) | 200 OK [http://test.host/user_roles/1/edit]
2451
+ User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'hudson') LIMIT 1
2452
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'cathryn@smith.uk') LIMIT 1
2453
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '8785c7470e06baef370beceb53d62f66e7ac325d', '2009-12-11 11:38:15', '1f4d4672d38b5876e81d522c09bd5f03898d918e', NULL, '2009-12-11 11:38:15', NULL, 'hudson', 'cathryn@smith.uk')
2454
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
2455
+ UserRole Create (0.2ms) INSERT INTO "user_roles" ("name", "created_at", "updated_at", "story_id") VALUES('---
2456
+ - hic
2457
+ - aspernatur
2458
+ - numquam
2459
+ ', '2009-12-11 11:38:15', '2009-12-11 11:38:15', NULL)
2460
+ UserRole Load (0.4ms) SELECT * FROM "user_roles" WHERE ("user_roles"."id" = 1) 
2461
+
2462
+
2463
+ Processing UserRolesController#index (for 0.0.0.0 at 2009-12-11 11:38:15) [GET]
2464
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
2465
+ UserRole Load (0.3ms) SELECT * FROM "user_roles" 
2466
+ Rendering template within layouts/main
2467
+ Rendering user_roles/index
2468
+ Rendered layouts/_meta (0.2ms)
2469
+ Rendered layouts/_header (0.3ms)
2470
+ Rendered layouts/_footer (0.1ms)
2471
+ Completed in 14ms (View: 11, DB: 3) | 200 OK [http://test.host/user_roles]
2472
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'keaton') LIMIT 1
2473
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'alysson.robel@turcotte.name') LIMIT 1
2474
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'ff7afcd8f576003781e924129dd42d493cc40bd0', '2009-12-11 11:38:15', '8bfbb9d5008efcf91e7491ac1a82088a09343377', NULL, '2009-12-11 11:38:15', NULL, 'keaton', 'alysson.robel@turcotte.name')
2475
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
2476
+ UserRole Create (0.2ms) INSERT INTO "user_roles" ("name", "created_at", "updated_at", "story_id") VALUES('---
2477
+ - harum
2478
+ - qui
2479
+ - ut
2480
+ ', '2009-12-11 11:38:15', '2009-12-11 11:38:15', NULL)
2481
+ UserRole Load (0.3ms) SELECT * FROM "user_roles" WHERE ("user_roles"."id" = 1) 
2482
+
2483
+
2484
+ Processing UserRolesController#new (for 0.0.0.0 at 2009-12-11 11:38:15) [GET]
2485
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
2486
+ Rendering template within layouts/main
2487
+ Rendering user_roles/new
2488
+ Rendered layouts/_meta (0.1ms)
2489
+ Rendered layouts/_header (0.4ms)
2490
+ Rendered layouts/_footer (0.1ms)
2491
+ Completed in 10ms (View: 8, DB: 2) | 200 OK [http://test.host/user_roles/new]
2492
+ User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'tomasa') LIMIT 1
2493
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'concepcion.nader@quigley.biz') LIMIT 1
2494
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '42e14e8d0bd8a329ccfb5b1346f1dbc4b89a8bbf', '2009-12-11 11:38:15', '50276361a8cf6b2e7192b7fab7c5ec827bb70c03', NULL, '2009-12-11 11:38:15', NULL, 'tomasa', 'concepcion.nader@quigley.biz')
2495
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
2496
+ UserRole Create (0.2ms) INSERT INTO "user_roles" ("name", "created_at", "updated_at", "story_id") VALUES('---
2497
+ - sit
2498
+ - aut
2499
+ - quisquam
2500
+ ', '2009-12-11 11:38:15', '2009-12-11 11:38:15', NULL)
2501
+ UserRole Load (0.3ms) SELECT * FROM "user_roles" WHERE ("user_roles"."id" = 1) 
2502
+
2503
+
2504
+ Processing UserRolesController#show (for 0.0.0.0 at 2009-12-11 11:38:15) [GET]
2505
+ Parameters: {"id"=>"1"}
2506
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
2507
+ UserRole Load (0.3ms) SELECT * FROM "user_roles" WHERE ("user_roles"."id" = 1) 
2508
+ Rendering template within layouts/main
2509
+ Rendering user_roles/show
2510
+ Rendered layouts/_meta (0.1ms)
2511
+ Rendered layouts/_header (0.3ms)
2512
+ Rendered layouts/_footer (0.1ms)
2513
+ Completed in 10ms (View: 7, DB: 3) | 200 OK [http://test.host/user_roles/1]
2514
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'armando') LIMIT 1
2515
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'maritza.boehm@heaney.us') LIMIT 1
2516
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', '7c9d48320d8343893ecc1d877a5a7bd356228c08', '2009-12-11 11:38:15', 'f47354e9d98b26112f1ed7e37a027cb635856235', NULL, '2009-12-11 11:38:15', NULL, 'armando', 'maritza.boehm@heaney.us')
2517
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
2518
+ UserRole Create (0.2ms) INSERT INTO "user_roles" ("name", "created_at", "updated_at", "story_id") VALUES('---
2519
+ - ut
2520
+ - non
2521
+ - deleniti
2522
+ ', '2009-12-11 11:38:15', '2009-12-11 11:38:15', NULL)
2523
+ UserRole Load (0.3ms) SELECT * FROM "user_roles" WHERE ("user_roles"."id" = 1) 
2524
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "user_roles" 
2525
+
2526
+
2527
+ Processing UserRolesController#update (for 0.0.0.0 at 2009-12-11 11:38:15) [PUT]
2528
+ Parameters: {"user_role"=>{"name"=>nil}, "id"=>"1"}
2529
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
2530
+ UserRole Load (0.3ms) SELECT * FROM "user_roles" WHERE ("user_roles"."id" = 1) 
2531
+ Rendering template within layouts/main
2532
+ Rendering user_roles/edit
2533
+ Rendered layouts/_meta (0.1ms)
2534
+ Rendered layouts/_header (0.2ms)
2535
+ Rendered layouts/_footer (0.1ms)
2536
+ Completed in 18ms (View: 14, DB: 3) | 200 OK [http://test.host/user_roles/1?user_role%5Bname%5D=]
2537
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "user_roles" 
2538
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'jacky') LIMIT 1
2539
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'brandi@gerhold.info') LIMIT 1
2540
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'ccdfaf203b526fbf3690fb4c762eb4d28fd44ac3', '2009-12-11 11:38:15', 'a40d3a83d00c50ddfb208cad1eac770cbd5d6a7c', NULL, '2009-12-11 11:38:15', NULL, 'jacky', 'brandi@gerhold.info')
2541
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
2542
+ UserRole Create (0.2ms) INSERT INTO "user_roles" ("name", "created_at", "updated_at", "story_id") VALUES('---
2543
+ - possimus
2544
+ - rerum
2545
+ - velit
2546
+ ', '2009-12-11 11:38:15', '2009-12-11 11:38:15', NULL)
2547
+ UserRole Load (0.3ms) SELECT * FROM "user_roles" WHERE ("user_roles"."id" = 1) 
2548
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "user_roles" 
2549
+
2550
+
2551
+ Processing UserRolesController#update (for 0.0.0.0 at 2009-12-11 11:38:15) [PUT]
2552
+ Parameters: {"user_role"=>{"name"=>["quia", "quisquam", "tempora"]}, "id"=>"1"}
2553
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
2554
+ UserRole Load (0.4ms) SELECT * FROM "user_roles" WHERE ("user_roles"."id" = 1) 
2555
+ UserRole Update (0.2ms) UPDATE "user_roles" SET "updated_at" = '2009-12-11 11:38:15', "name" = '---
2556
+ - quia
2557
+ - quisquam
2558
+ - tempora
2559
+ ' WHERE "id" = 1
2560
+ Redirected to http://test.host/user_roles/1
2561
+ Completed in 7ms (DB: 3) | 302 Found [http://test.host/user_roles/1?user_role%5Bname%5D%5B%5D=quia&user_role%5Bname%5D%5B%5D=quisquam&user_role%5Bname%5D%5B%5D=tempora]
2562
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "user_roles" 
2563
+
2564
+
2565
+ Processing UsersController#new (for 0.0.0.0 at 2009-12-11 11:38:15) [GET]
2566
+ Rendering template within layouts/main
2567
+ Rendering users/new
2568
+ Rendered layouts/_meta (0.2ms)
2569
+ Rendered layouts/_header (0.3ms)
2570
+ Rendered layouts/_footer (0.1ms)
2571
+ Completed in 14ms (View: 11, DB: 0) | 200 OK [http://test.host/signup]
2572
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
2573
+
2574
+
2575
+ Processing UsersController#create (for 0.0.0.0 at 2009-12-11 11:38:15) [POST]
2576
+ Parameters: {"user"=>{"password_confirmation"=>"quire69", "login"=>"quire", "password"=>"quire69", "email"=>"quire@example.com"}}
2577
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quire') LIMIT 1
2578
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'quire@example.com') LIMIT 1
2579
+ User Create (0.3ms) INSERT INTO "users" ("name", "salt", "created_at", "crypted_password", "remember_token_expires_at", "updated_at", "remember_token", "login", "email") VALUES('', 'be743ff563b3b3a013d5208187c54c84f03a652c', '2009-12-11 11:38:15', 'ade929ab6539deeab7a145ac3f0afaa7fb32fee2', NULL, '2009-12-11 11:38:15', NULL, 'quire', 'quire@example.com')
2580
+ Redirected to http://test.host/
2581
+ Completed in 7ms (DB: 1) | 302 Found [http://test.host/register?user%5Bemail%5D=quire%40example.com&user%5Blogin%5D=quire&user%5Bpassword%5D=quire69&user%5Bpassword_confirmation%5D=quire69]
2582
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
2583
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
2584
+
2585
+
2586
+ Processing UsersController#create (for 0.0.0.0 at 2009-12-11 11:38:15) [POST]
2587
+ Parameters: {"user"=>{"password_confirmation"=>"quire69", "login"=>"quire", "password"=>"quire69", "email"=>nil}}
2588
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quire') LIMIT 1
2589
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL) LIMIT 1
2590
+ Rendering template within layouts/main
2591
+ Rendering users/new
2592
+ Rendered layouts/_meta (0.1ms)
2593
+ Rendered layouts/_header (0.2ms)
2594
+ Rendered layouts/_footer (0.1ms)
2595
+ Completed in 22ms (View: 18, DB: 1) | 200 OK [http://test.host/register?user%5Bemail%5D=&user%5Blogin%5D=quire&user%5Bpassword%5D=quire69&user%5Bpassword_confirmation%5D=quire69]
2596
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
2597
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
2598
+
2599
+
2600
+ Processing UsersController#create (for 0.0.0.0 at 2009-12-11 11:38:15) [POST]
2601
+ Parameters: {"user"=>{"password_confirmation"=>"quire69", "login"=>nil, "password"=>"quire69", "email"=>"quire@example.com"}}
2602
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" IS NULL) LIMIT 1
2603
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'quire@example.com') LIMIT 1
2604
+ Rendering template within layouts/main
2605
+ Rendering users/new
2606
+ Rendered layouts/_meta (0.1ms)
2607
+ Rendered layouts/_header (0.2ms)
2608
+ Rendered layouts/_footer (0.1ms)
2609
+ Completed in 22ms (View: 18, DB: 1) | 200 OK [http://test.host/register?user%5Bemail%5D=quire%40example.com&user%5Blogin%5D=&user%5Bpassword%5D=quire69&user%5Bpassword_confirmation%5D=quire69]
2610
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
2611
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
2612
+
2613
+
2614
+ Processing UsersController#create (for 0.0.0.0 at 2009-12-11 11:38:15) [POST]
2615
+ Parameters: {"user"=>{"password_confirmation"=>nil, "login"=>"quire", "password"=>"quire69", "email"=>"quire@example.com"}}
2616
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quire') LIMIT 1
2617
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'quire@example.com') LIMIT 1
2618
+ Rendering template within layouts/main
2619
+ Rendering users/new
2620
+ Rendered layouts/_meta (0.1ms)
2621
+ Rendered layouts/_header (0.2ms)
2622
+ Rendered layouts/_footer (0.3ms)
2623
+ Completed in 17ms (View: 13, DB: 1) | 200 OK [http://test.host/register?user%5Bemail%5D=quire%40example.com&user%5Blogin%5D=quire&user%5Bpassword%5D=quire69&user%5Bpassword_confirmation%5D=]
2624
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
2625
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
2626
+
2627
+
2628
+ Processing UsersController#create (for 0.0.0.0 at 2009-12-11 11:38:15) [POST]
2629
+ Parameters: {"user"=>{"password_confirmation"=>"quire69", "login"=>"quire", "password"=>nil, "email"=>"quire@example.com"}}
2630
+ User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."login" = 'quire') LIMIT 1
2631
+ User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" = 'quire@example.com') LIMIT 1
2632
+ Rendering template within layouts/main
2633
+ Rendering users/new
2634
+ Rendered layouts/_meta (0.1ms)
2635
+ Rendered layouts/_header (0.2ms)
2636
+ Rendered layouts/_footer (0.1ms)
2637
+ Completed in 22ms (View: 17, DB: 1) | 200 OK [http://test.host/register?user%5Bemail%5D=quire%40example.com&user%5Blogin%5D=quire&user%5Bpassword%5D=&user%5Bpassword_confirmation%5D=quire69]
2638
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "users" 
2639
+
2640
+
2641
+ Processing IterationsController#index (for 127.0.0.1 at 2009-12-11 11:38:22) [GET]
2642
+ Redirected to http://www.example.com/session/new
2643
+ Filter chain halted as [:login_required] rendered_or_redirected.
2644
+ Completed in 7ms (DB: 2) | 302 Found [http://www.example.com/]
2645
+
2646
+
2647
+ Processing IterationsController#index (for 127.0.0.1 at 2009-12-11 11:38:22) [GET]
2648
+ Redirected to http://www.example.com/session/new
2649
+ Filter chain halted as [:login_required] rendered_or_redirected.
2650
+ Completed in 5ms (DB: 0) | 302 Found [http://www.example.com/]
2651
+
2652
+
2653
+ Processing IterationsController#create (for 0.0.0.0 at 2009-12-11 11:38:34) [POST]
2654
+ Parameters: {"iteration"=>{}}
2655
+ Rendering template within layouts/main
2656
+ Rendering iterations/new
2657
+ Completed in 56ms (View: 43, DB: 4) | 200 OK [http://test.host/iterations?]
2658
+
2659
+
2660
+ Processing IterationsController#create (for 0.0.0.0 at 2009-12-11 11:38:34) [POST]
2661
+ Parameters: {"iteration"=>{}}
2662
+ Rendering template within layouts/main
2663
+ Rendering iterations/new
2664
+ Completed in 38ms (View: 32, DB: 4) | 200 OK [http://test.host/iterations?]
2665
+
2666
+
2667
+ Processing IterationsController#create (for 0.0.0.0 at 2009-12-11 11:38:34) [POST]
2668
+ Parameters: {"iteration"=>{"name"=>["aliquam", "architecto", "fugiat"], "start_date"=>Fri, 11 Dec 2009, "velocity"=>1, "end_date"=>Fri, 25 Dec 2009}}
2669
+ Redirected to http://test.host/iterations
2670
+ Completed in 11ms (DB: 4) | 302 Found [http://test.host/iterations?iteration%5Bend_date%5D=2009-12-25&iteration%5Bname%5D%5B%5D=aliquam&iteration%5Bname%5D%5B%5D=architecto&iteration%5Bname%5D%5B%5D=fugiat&iteration%5Bstart_date%5D=2009-12-11&iteration%5Bvelocity%5D=1]
2671
+
2672
+
2673
+ Processing IterationsController#create (for 0.0.0.0 at 2009-12-11 11:38:34) [POST]
2674
+ Parameters: {"iteration"=>{"start_date"=>Fri, 11 Dec 2009, "name"=>["reiciendis", "molestiae", "dolores"], "release_id"=>"1", "velocity"=>1, "end_date"=>Fri, 25 Dec 2009}}
2675
+ Redirected to http://test.host/iterations
2676
+ Completed in 9ms (DB: 2) | 302 Found [http://test.host/iterations?iteration%5Bend_date%5D=2009-12-25&iteration%5Bname%5D%5B%5D=aliquam&iteration%5Bname%5D%5B%5D=architecto&iteration%5Bname%5D%5B%5D=fugiat&iteration%5Bstart_date%5D=2009-12-11&iteration%5Bvelocity%5D=1]
2677
+
2678
+
2679
+ Processing IterationsController#create (for 0.0.0.0 at 2009-12-11 11:38:34) [POST]
2680
+ Parameters: {"iteration"=>{"name"=>["molestiae", "velit", "dolores"], "start_date"=>Fri, 11 Dec 2009, "velocity"=>1, "end_date"=>Fri, 25 Dec 2009}}
2681
+ Redirected to http://test.host/iterations
2682
+ Completed in 11ms (DB: 5) | 302 Found [http://test.host/iterations?iteration%5Bend_date%5D=2009-12-25&iteration%5Bname%5D%5B%5D=molestiae&iteration%5Bname%5D%5B%5D=velit&iteration%5Bname%5D%5B%5D=dolores&iteration%5Bstart_date%5D=2009-12-11&iteration%5Bvelocity%5D=1]
2683
+
2684
+
2685
+ Processing IterationsController#create (for 0.0.0.0 at 2009-12-11 11:38:34) [POST]
2686
+ Parameters: {"iteration"=>{"name"=>["error", "hic", "dolorum"], "start_date"=>Fri, 11 Dec 2009, "velocity"=>1, "end_date"=>Fri, 25 Dec 2009}}
2687
+ Redirected to http://test.host/iterations
2688
+ Completed in 11ms (DB: 4) | 302 Found [http://test.host/iterations?iteration%5Bend_date%5D=2009-12-25&iteration%5Bname%5D%5B%5D=error&iteration%5Bname%5D%5B%5D=hic&iteration%5Bname%5D%5B%5D=dolorum&iteration%5Bstart_date%5D=2009-12-11&iteration%5Bvelocity%5D=1]
2689
+
2690
+
2691
+ Processing IterationsController#destroy (for 0.0.0.0 at 2009-12-11 11:38:34) [DELETE]
2692
+ Parameters: {"id"=>"1"}
2693
+ Redirected to http://test.host/iterations
2694
+ Completed in 6ms (DB: 5) | 302 Found [http://test.host/iterations/1]
2695
+
2696
+
2697
+ Processing IterationsController#edit (for 0.0.0.0 at 2009-12-11 11:38:34) [GET]
2698
+ Parameters: {"id"=>"1"}
2699
+ Rendering template within layouts/main
2700
+ Rendering iterations/edit
2701
+ Completed in 30ms (View: 25, DB: 5) | 200 OK [http://test.host/iterations/1/edit]
2702
+
2703
+
2704
+ Processing IterationsController#index (for 0.0.0.0 at 2009-12-11 11:38:34) [GET]
2705
+ Rendering template within layouts/main
2706
+ Rendering iterations/index
2707
+ Completed in 34ms (View: 28, DB: 21) | 200 OK [http://test.host/iterations]
2708
+
2709
+
2710
+ Processing IterationsController#new (for 0.0.0.0 at 2009-12-11 11:38:34) [GET]
2711
+ Rendering template within layouts/main
2712
+ Rendering iterations/new
2713
+ Completed in 26ms (View: 21, DB: 4) | 200 OK [http://test.host/iterations/new]
2714
+
2715
+
2716
+ Processing IterationsController#show (for 0.0.0.0 at 2009-12-11 11:38:34) [GET]
2717
+ Parameters: {"id"=>"1"}
2718
+ Rendering template within layouts/main
2719
+ Rendering iterations/show
2720
+ Completed in 17ms (View: 12, DB: 4) | 200 OK [http://test.host/iterations/1]
2721
+
2722
+
2723
+ Processing IterationsController#update (for 0.0.0.0 at 2009-12-11 11:38:34) [PUT]
2724
+ Parameters: {"iteration"=>{"name"=>""}, "id"=>"1"}
2725
+ Rendering template within layouts/main
2726
+ Rendering iterations/edit
2727
+ Completed in 29ms (View: 23, DB: 4) | 200 OK [http://test.host/iterations/1?iteration%5Bname%5D=]
2728
+
2729
+
2730
+ Processing IterationsController#update (for 0.0.0.0 at 2009-12-11 11:38:34) [PUT]
2731
+ Parameters: {"iteration"=>{"name"=>""}, "id"=>"1"}
2732
+ Rendering template within layouts/main
2733
+ Rendering iterations/edit
2734
+ Completed in 32ms (View: 26, DB: 3) | 200 OK [http://test.host/iterations/1?iteration%5Bname%5D=]
2735
+
2736
+
2737
+ Processing IterationsController#update (for 0.0.0.0 at 2009-12-11 11:38:35) [PUT]
2738
+ Parameters: {"iteration"=>{"name"=>"bar"}, "id"=>"1"}
2739
+ Redirected to http://test.host/iterations
2740
+ Completed in 10ms (DB: 5) | 302 Found [http://test.host/iterations/1?iteration%5Bname%5D=bar]
2741
+
2742
+
2743
+ Processing IterationsController#update (for 0.0.0.0 at 2009-12-11 11:38:35) [PUT]
2744
+ Parameters: {"iteration"=>{"release_id"=>"1"}, "id"=>"1"}
2745
+ Redirected to http://test.host/iterations
2746
+ Completed in 8ms (DB: 2) | 302 Found [http://test.host/iterations/1?iteration%5Bname%5D=bar]
2747
+
2748
+
2749
+ Processing IterationsController#update (for 0.0.0.0 at 2009-12-11 11:38:35) [PUT]
2750
+ Parameters: {"iteration"=>{"name"=>"bar"}, "id"=>"1"}
2751
+ Redirected to http://test.host/iterations
2752
+ Completed in 10ms (DB: 5) | 302 Found [http://test.host/iterations/1?iteration%5Bname%5D=bar]
2753
+
2754
+
2755
+ Processing IterationsController#index (for 0.0.0.0 at 2009-12-11 11:38:35) [GET]
2756
+ Rendering template within layouts/main
2757
+ Rendering iterations/index
2758
+ Completed in 13ms (View: 9, DB: 3) | 200 OK [http://test.host/iterations]
2759
+
2760
+
2761
+ Processing OutcomesController#create (for 0.0.0.0 at 2009-12-11 11:38:35) [POST]
2762
+ Parameters: {"outcome"=>{}, "scenario_id"=>"1"}
2763
+ Rendering template within layouts/outcomes
2764
+ Rendering outcomes/new
2765
+ Completed in 23ms (View: 10, DB: 6) | 200 OK [http://test.host/outcomes?&scenario_id=1]
2766
+
2767
+
2768
+ Processing OutcomesController#create (for 0.0.0.0 at 2009-12-11 11:38:35) [POST]
2769
+ Parameters: {"outcome"=>{"description"=>"Foo"}, "scenario_id"=>"1"}
2770
+ Redirected to http://test.host/outcomes/2
2771
+ Completed in 10ms (DB: 7) | 302 Found [http://test.host/outcomes?outcome%5Bdescription%5D=Foo&scenario_id=1]
2772
+
2773
+
2774
+ Processing OutcomesController#destroy (for 0.0.0.0 at 2009-12-11 11:38:35) [DELETE]
2775
+ Parameters: {"id"=>"1"}
2776
+ Redirected to http://test.host/outcomes
2777
+ Completed in 6ms (DB: 6) | 302 Found [http://test.host/outcomes/1]
2778
+
2779
+
2780
+ Processing OutcomesController#edit (for 0.0.0.0 at 2009-12-11 11:38:35) [GET]
2781
+ Parameters: {"scenario_id"=>"1", "id"=>"1"}
2782
+ Rendering template within layouts/outcomes
2783
+ Rendering outcomes/edit
2784
+ Completed in 13ms (View: 7, DB: 6) | 200 OK [http://test.host/outcomes/1/edit?scenario_id=1]
2785
+
2786
+
2787
+ Processing OutcomesController#new (for 0.0.0.0 at 2009-12-11 11:38:35) [GET]
2788
+ Parameters: {"scenario_id"=>"1"}
2789
+ Rendering template within layouts/outcomes
2790
+ Rendering outcomes/new
2791
+ Completed in 14ms (View: 7, DB: 6) | 200 OK [http://test.host/outcomes/new?scenario_id=1]
2792
+
2793
+
2794
+ Processing OutcomesController#index (for 0.0.0.0 at 2009-12-11 11:38:35) [GET]
2795
+ Parameters: {"scenario_id"=>"1"}
2796
+ Rendering template within layouts/outcomes
2797
+ Rendering outcomes/index
2798
+ Completed in 9ms (View: 4, DB: 6) | 200 OK [http://test.host/outcomes?scenario_id=1]
2799
+
2800
+
2801
+ Processing OutcomesController#show (for 0.0.0.0 at 2009-12-11 11:38:35) [GET]
2802
+ Parameters: {"scenario_id"=>"1", "id"=>"1"}
2803
+ Rendering template within layouts/outcomes
2804
+ Rendering outcomes/show
2805
+ Completed in 9ms (View: 3, DB: 6) | 200 OK [http://test.host/outcomes/1?scenario_id=1]
2806
+
2807
+
2808
+ Processing OutcomesController#update (for 0.0.0.0 at 2009-12-11 11:38:35) [PUT]
2809
+ Parameters: {"outcome"=>{}, "scenario_id"=>"1", "id"=>"1"}
2810
+ Redirected to http://test.host/outcomes/1
2811
+ Completed in 137ms (DB: 6) | 302 Found [http://test.host/outcomes/1?&scenario_id=1]
2812
+
2813
+
2814
+ Processing OutcomesController#update (for 0.0.0.0 at 2009-12-11 11:38:35) [PUT]
2815
+ Parameters: {"outcome"=>{"description"=>""}, "scenario_id"=>"1", "id"=>"1"}
2816
+ Rendering template within layouts/outcomes
2817
+ Rendering outcomes/edit
2818
+ Completed in 17ms (View: 10, DB: 6) | 200 OK [http://test.host/outcomes/1?outcome%5Bdescription%5D=&scenario_id=1]
2819
+
2820
+
2821
+ Processing OutcomesController#update (for 0.0.0.0 at 2009-12-11 11:38:36) [PUT]
2822
+ Parameters: {"outcome"=>{"description"=>"bar"}, "scenario_id"=>"1", "id"=>"1"}
2823
+ Redirected to http://test.host/outcomes/1
2824
+ Completed in 11ms (DB: 6) | 302 Found [http://test.host/outcomes/1?outcome%5Bdescription%5D=bar&scenario_id=1]
2825
+
2826
+
2827
+ Processing PreconditionsController#create (for 0.0.0.0 at 2009-12-11 11:38:36) [POST]
2828
+ Parameters: {"scenario_id"=>"1", "precondition"=>{}}
2829
+ Rendering template within layouts/main
2830
+ Rendering preconditions/new
2831
+ Completed in 32ms (View: 20, DB: 6) | 200 OK [http://test.host/preconditions?&scenario_id=1]
2832
+
2833
+
2834
+ Processing PreconditionsController#create (for 0.0.0.0 at 2009-12-11 11:38:36) [POST]
2835
+ Parameters: {"scenario_id"=>"1", "precondition"=>{}}
2836
+ Rendering template within layouts/main
2837
+ Rendering preconditions/new
2838
+ Completed in 24ms (View: 18, DB: 6) | 200 OK [http://test.host/preconditions?&scenario_id=1]
2839
+
2840
+
2841
+ Processing PreconditionsController#create (for 0.0.0.0 at 2009-12-11 11:38:36) [POST]
2842
+ Parameters: {"scenario_id"=>"1", "precondition"=>{"description"=>"Foo"}}
2843
+ Redirected to http://test.host/preconditions/2
2844
+ Completed in 10ms (DB: 7) | 302 Found [http://test.host/preconditions?precondition%5Bdescription%5D=Foo&scenario_id=1]
2845
+
2846
+
2847
+ Processing PreconditionsController#destroy (for 0.0.0.0 at 2009-12-11 11:38:36) [DELETE]
2848
+ Parameters: {"id"=>"1"}
2849
+ Redirected to http://test.host/preconditions
2850
+ Completed in 6ms (DB: 6) | 302 Found [http://test.host/preconditions/1]
2851
+
2852
+
2853
+ Processing PreconditionsController#edit (for 0.0.0.0 at 2009-12-11 11:38:36) [GET]
2854
+ Parameters: {"scenario_id"=>"1", "id"=>"1"}
2855
+ Rendering template within layouts/main
2856
+ Rendering preconditions/edit
2857
+ Completed in 19ms (View: 14, DB: 6) | 200 OK [http://test.host/preconditions/1/edit?scenario_id=1]
2858
+
2859
+
2860
+ Processing PreconditionsController#index (for 0.0.0.0 at 2009-12-11 11:38:36) [GET]
2861
+ Parameters: {"scenario_id"=>"1"}
2862
+ Rendering template within layouts/main
2863
+ Rendering preconditions/index
2864
+ Completed in 15ms (View: 10, DB: 6) | 200 OK [http://test.host/preconditions?scenario_id=1]
2865
+
2866
+
2867
+ Processing PreconditionsController#new (for 0.0.0.0 at 2009-12-11 11:38:36) [GET]
2868
+ Parameters: {"scenario_id"=>"1"}
2869
+ Rendering template within layouts/main
2870
+ Rendering preconditions/new
2871
+ Completed in 24ms (View: 18, DB: 6) | 200 OK [http://test.host/preconditions/new?scenario_id=1]
2872
+
2873
+
2874
+ Processing PreconditionsController#show (for 0.0.0.0 at 2009-12-11 11:38:36) [GET]
2875
+ Parameters: {"scenario_id"=>"1", "id"=>"1"}
2876
+ Rendering template within layouts/main
2877
+ Rendering preconditions/show
2878
+ Completed in 15ms (View: 10, DB: 6) | 200 OK [http://test.host/preconditions/1?scenario_id=1]
2879
+
2880
+
2881
+ Processing PreconditionsController#update (for 0.0.0.0 at 2009-12-11 11:38:36) [PUT]
2882
+ Parameters: {"scenario_id"=>"1", "precondition"=>{}, "id"=>"1"}
2883
+ Redirected to http://test.host/preconditions/1
2884
+ Completed in 9ms (DB: 6) | 302 Found [http://test.host/preconditions/1?&scenario_id=1]
2885
+
2886
+
2887
+ Processing PreconditionsController#update (for 0.0.0.0 at 2009-12-11 11:38:37) [PUT]
2888
+ Parameters: {"scenario_id"=>"1", "precondition"=>{"description"=>""}, "id"=>"1"}
2889
+ Rendering template within layouts/main
2890
+ Rendering preconditions/edit
2891
+ Completed in 23ms (View: 16, DB: 6) | 200 OK [http://test.host/preconditions/1?precondition%5Bdescription%5D=&scenario_id=1]
2892
+
2893
+
2894
+ Processing PreconditionsController#update (for 0.0.0.0 at 2009-12-11 11:38:37) [PUT]
2895
+ Parameters: {"scenario_id"=>"1", "precondition"=>{"description"=>""}, "id"=>"1"}
2896
+ Rendering template within layouts/main
2897
+ Rendering preconditions/edit
2898
+ Completed in 154ms (View: 17, DB: 6) | 200 OK [http://test.host/preconditions/1?precondition%5Bdescription%5D=&scenario_id=1]
2899
+
2900
+
2901
+ Processing PreconditionsController#update (for 0.0.0.0 at 2009-12-11 11:38:37) [PUT]
2902
+ Parameters: {"scenario_id"=>"1", "precondition"=>{"description"=>"Bar"}, "id"=>"1"}
2903
+ Redirected to http://test.host/preconditions/1
2904
+ Completed in 11ms (DB: 6) | 302 Found [http://test.host/preconditions/1?precondition%5Bdescription%5D=Bar&scenario_id=1]
2905
+
2906
+
2907
+ Processing ReleasesController#create (for 0.0.0.0 at 2009-12-11 11:38:37) [POST]
2908
+ Parameters: {"release"=>{"notes"=>["Consequuntur temporibus optio iste.", "Esse quis deserunt minima sit voluptas.", "Voluptatem omnis blanditiis enim."], "release_date"=>Thu, 31 Dec 2009}}
2909
+ Redirected to http://test.host/releases/2
2910
+ Completed in 17ms (DB: 4) | 302 Found [http://test.host/releases?release%5Bnotes%5D%5B%5D=Consequuntur+temporibus+optio+iste.&release%5Bnotes%5D%5B%5D=Esse+quis+deserunt+minima+sit+voluptas.&release%5Bnotes%5D%5B%5D=Voluptatem+omnis+blanditiis+enim.&release%5Brelease_date%5D=2009-12-31]
2911
+
2912
+
2913
+ Processing ReleasesController#destroy (for 0.0.0.0 at 2009-12-11 11:38:37) [DELETE]
2914
+ Parameters: {"id"=>"1"}
2915
+ Redirected to http://test.host/releases
2916
+ Completed in 5ms (DB: 5) | 302 Found [http://test.host/releases/1]
2917
+
2918
+
2919
+ Processing ReleasesController#create (for 0.0.0.0 at 2009-12-11 11:38:37) [POST]
2920
+ Parameters: {"release"=>{"notes"=>"hi", "release_date"=>"30/30/2009"}}
2921
+ Rendering template within layouts/main
2922
+ Rendering releases/new
2923
+ Completed in 39ms (View: 32, DB: 4) | 200 OK [http://test.host/releases?release%5Bnotes%5D=hi&release%5Brelease_date%5D=30%2F30%2F2009]
2924
+
2925
+
2926
+ Processing ReleasesController#update (for 0.0.0.0 at 2009-12-11 11:38:37) [PUT]
2927
+ Parameters: {"id"=>"1", "release"=>{"notes"=>"hi", "release_date"=>"30/30/2009"}}
2928
+ Rendering template within layouts/main
2929
+ Rendering releases/edit
2930
+ Completed in 42ms (View: 34, DB: 4) | 200 OK [http://test.host/releases/1?release%5Bnotes%5D=hi&release%5Brelease_date%5D=30%2F30%2F2009]
2931
+
2932
+
2933
+ Processing ReleasesController#edit (for 0.0.0.0 at 2009-12-11 11:38:37) [GET]
2934
+ Parameters: {"id"=>"1"}
2935
+ Rendering template within layouts/main
2936
+ Rendering releases/edit
2937
+ Completed in 27ms (View: 23, DB: 4) | 200 OK [http://test.host/releases/1/edit]
2938
+
2939
+
2940
+ Processing ReleasesController#index (for 0.0.0.0 at 2009-12-11 11:38:37) [GET]
2941
+ Rendering template within layouts/main
2942
+ Rendering releases/index
2943
+ Completed in 23ms (View: 19, DB: 4) | 200 OK [http://test.host/releases]
2944
+
2945
+
2946
+ Processing ReleasesController#new (for 0.0.0.0 at 2009-12-11 11:38:37) [GET]
2947
+ Rendering template within layouts/main
2948
+ Rendering releases/new
2949
+ Completed in 22ms (View: 19, DB: 3) | 200 OK [http://test.host/releases/new]
2950
+
2951
+
2952
+ Processing ReleasesController#show (for 0.0.0.0 at 2009-12-11 11:38:37) [GET]
2953
+ Parameters: {"id"=>"1"}
2954
+ Rendering template within layouts/main
2955
+ Rendering releases/show
2956
+ Completed in 31ms (View: 12, DB: 4) | 200 OK [http://test.host/releases/1]
2957
+
2958
+
2959
+ Processing ReleasesController#update (for 0.0.0.0 at 2009-12-11 11:38:38) [PUT]
2960
+ Parameters: {"id"=>"1", "release"=>{"notes"=>["Reprehenderit minima autem sed aut sunt.", "Vel blanditiis debitis fuga.", "Voluptas incidunt optio consequatur eveniet beatae quia magni."], "release_date"=>Thu, 31 Dec 2009}}
2961
+ Redirected to http://test.host/releases/1
2962
+ Completed in 11ms (DB: 4) | 302 Found [http://test.host/releases/1?release%5Bnotes%5D%5B%5D=Reprehenderit+minima+autem+sed+aut+sunt.&release%5Bnotes%5D%5B%5D=Vel+blanditiis+debitis+fuga.&release%5Bnotes%5D%5B%5D=Voluptas+incidunt+optio+consequatur+eveniet+beatae+quia+magni.&release%5Brelease_date%5D=2009-12-31]
2963
+
2964
+
2965
+ Processing ScenariosController#create (for 0.0.0.0 at 2009-12-11 11:38:38) [POST]
2966
+ Parameters: {"story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f32dbdd6188 @wrapped_string="atque-reprehenderit-et-voluptas-ad-voluptatem-vel-sint-culpa">, "scenario"=>{}}
2967
+ Rendering template within layouts/main
2968
+ Rendering scenarios/new
2969
+ Completed in 21ms (View: 8, DB: 6) | 200 OK [http://test.host/stories/atque-reprehenderit-et-voluptas-ad-voluptatem-vel-sint-culpa/scenarios?]
2970
+
2971
+
2972
+ Processing ScenariosController#create (for 0.0.0.0 at 2009-12-11 11:38:38) [POST]
2973
+ Parameters: {"story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f32db080330 @wrapped_string="quis-et-est-unde-nisi-dolor-doloremque-sapiente-velit">, "scenario"=>{}}
2974
+ Rendering template within layouts/main
2975
+ Rendering scenarios/new
2976
+ Completed in 15ms (View: 8, DB: 11) | 200 OK [http://test.host/stories/quis-et-est-unde-nisi-dolor-doloremque-sapiente-velit/scenarios?]
2977
+
2978
+
2979
+ Processing ScenariosController#create (for 0.0.0.0 at 2009-12-11 11:38:38) [POST]
2980
+ Parameters: {"story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f32db87a0e0 @wrapped_string="non-quis-officia-soluta-non-iste-ut-autem">, "scenario"=>{"title"=>"Foo"}}
2981
+ Redirected to http://test.host/stories/non-quis-officia-soluta-non-iste-ut-autem/scenarios/2
2982
+ Completed in 14ms (DB: 7) | 302 Found [http://test.host/stories/non-quis-officia-soluta-non-iste-ut-autem/scenarios?scenario%5Btitle%5D=Foo]
2983
+
2984
+
2985
+ Processing ScenariosController#destroy (for 0.0.0.0 at 2009-12-11 11:38:38) [DELETE]
2986
+ Parameters: {"id"=>"1", "story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f32db61dc70 @wrapped_string="sint-minima-magni-occaecati">}
2987
+ Redirected to http://test.host/stories/sint-minima-magni-occaecati/scenarios
2988
+ Completed in 11ms (DB: 7) | 302 Found [http://test.host/stories/sint-minima-magni-occaecati/scenarios/1]
2989
+
2990
+
2991
+ Processing ScenariosController#edit (for 0.0.0.0 at 2009-12-11 11:38:38) [GET]
2992
+ Parameters: {"id"=>"1", "story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f32db5c22a8 @wrapped_string="omnis-dolorem-praesentium-perferendis-cum">}
2993
+ Rendering template within layouts/main
2994
+ Rendering scenarios/edit
2995
+ Completed in 14ms (View: 9, DB: 7) | 200 OK [http://test.host/stories/omnis-dolorem-praesentium-perferendis-cum/scenarios/1/edit]
2996
+
2997
+
2998
+ Processing ScenariosController#index (for 0.0.0.0 at 2009-12-11 11:38:38) [GET]
2999
+ Parameters: {"story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f32db55b378 @wrapped_string="quia-velit-quod-laborum">}
3000
+ Rendering template within layouts/main
3001
+ Rendering scenarios/index
3002
+ Completed in 14ms (View: 8, DB: 6) | 200 OK [http://test.host/stories/quia-velit-quod-laborum/scenarios]
3003
+
3004
+
3005
+ Processing ScenariosController#new (for 0.0.0.0 at 2009-12-11 11:38:39) [GET]
3006
+ Parameters: {"story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f32db4f6310 @wrapped_string="voluptatem-soluta-sequi-corrupti">}
3007
+ Rendering template within layouts/main
3008
+ Rendering scenarios/new
3009
+ Completed in 15ms (View: 8, DB: 6) | 200 OK [http://test.host/stories/voluptatem-soluta-sequi-corrupti/scenarios/new]
3010
+
3011
+
3012
+ Processing ScenariosController#show (for 0.0.0.0 at 2009-12-11 11:38:39) [GET]
3013
+ Parameters: {"id"=>"1", "story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f32db48d4c8 @wrapped_string="ut-eligendi-et-asperiores-quas-non-veritatis-id">}
3014
+ Rendering template within layouts/main
3015
+ Rendering scenarios/show
3016
+ Completed in 14ms (View: 8, DB: 6) | 200 OK [http://test.host/stories/ut-eligendi-et-asperiores-quas-non-veritatis-id/scenarios/1]
3017
+
3018
+
3019
+ Processing ScenariosController#update (for 0.0.0.0 at 2009-12-11 11:38:39) [PUT]
3020
+ Parameters: {"id"=>"1", "story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f32db4252b0 @wrapped_string="eveniet-sit-et-nostrum-cum-mollitia-similique">, "scenario"=>{"title"=>""}}
3021
+ Rendering template within layouts/main
3022
+ Rendering scenarios/edit
3023
+ Completed in 142ms (View: 134, DB: 6) | 200 OK [http://test.host/stories/eveniet-sit-et-nostrum-cum-mollitia-similique/scenarios/1?scenario%5Btitle%5D=]
3024
+
3025
+
3026
+ Processing ScenariosController#update (for 0.0.0.0 at 2009-12-11 11:38:39) [PUT]
3027
+ Parameters: {"id"=>"1", "story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f32dc1994a0 @wrapped_string="est-ut-deleniti-quod-ipsam-minima-amet-fuga-ipsum">, "scenario"=>{"title"=>""}}
3028
+ Rendering template within layouts/main
3029
+ Rendering scenarios/edit
3030
+ Completed in 16ms (View: 8, DB: 6) | 200 OK [http://test.host/stories/est-ut-deleniti-quod-ipsam-minima-amet-fuga-ipsum/scenarios/1?scenario%5Btitle%5D=]
3031
+
3032
+
3033
+ Processing ScenariosController#update (for 0.0.0.0 at 2009-12-11 11:38:39) [PUT]
3034
+ Parameters: {"id"=>"1", "story_id"=>#<ActiveSupport::Multibyte::Chars:0x7f32dc00fee0 @wrapped_string="doloremque-similique-aliquid-ducimus-et">, "scenario"=>{"title"=>"Bar"}}
3035
+ Redirected to http://test.host/stories/doloremque-similique-aliquid-ducimus-et/scenarios/1
3036
+ Completed in 13ms (DB: 7) | 302 Found [http://test.host/stories/doloremque-similique-aliquid-ducimus-et/scenarios/1?scenario%5Btitle%5D=Bar]
3037
+
3038
+
3039
+ Processing SessionsController#destroy (for 0.0.0.0 at 2009-12-11 11:38:39) [GET]
3040
+ Redirected to http://test.host/
3041
+ Completed in 6ms (DB: 2) | 302 Found [http://test.host/logout]
3042
+
3043
+
3044
+ Processing SessionsController#new (for 0.0.0.0 at 2009-12-11 11:38:39) [GET]
3045
+ Rendering template within layouts/main
3046
+ Rendering sessions/new
3047
+ Completed in 14ms (View: 13, DB: 2) | 200 OK [http://test.host/login]
3048
+
3049
+
3050
+ Processing SessionsController#new (for 0.0.0.0 at 2009-12-11 11:38:39) [GET]
3051
+ Rendering template within layouts/main
3052
+ Rendering sessions/new
3053
+ Completed in 11ms (View: 11, DB: 2) | 200 OK [http://test.host/login]
3054
+
3055
+
3056
+ Processing SessionsController#create (for 0.0.0.0 at 2009-12-11 11:38:39) [POST]
3057
+ Parameters: {"login"=>"quentin", "password"=>"bad password"}
3058
+ Failed login for 'quentin' from 0.0.0.0 at Fri Dec 11 11:38:39 UTC 2009
3059
+ Rendering template within layouts/main
3060
+ Rendering sessions/new
3061
+ Completed in 14ms (View: 11, DB: 3) | 200 OK [http://test.host/session?login=quentin&password=bad+password]
3062
+
3063
+
3064
+ Processing SessionsController#create (for 0.0.0.0 at 2009-12-11 11:38:39) [POST]
3065
+ Parameters: {"login"=>"quentin", "password"=>"monkey"}
3066
+ Redirected to http://test.host/
3067
+ Completed in 8ms (DB: 3) | 302 Found [http://test.host/session?login=quentin&password=monkey]
3068
+
3069
+
3070
+ Processing SessionsController#new (for 0.0.0.0 at 2009-12-11 11:38:39) [GET]
3071
+ Rendering template within layouts/main
3072
+ Rendering sessions/new
3073
+ Completed in 11ms (View: 10, DB: 2) | 200 OK [http://test.host/login]
3074
+
3075
+
3076
+ Processing SessionsController#destroy (for 0.0.0.0 at 2009-12-11 11:38:39) [GET]
3077
+ Redirected to http://test.host/
3078
+ Completed in 1ms (DB: 3) | 302 Found [http://test.host/logout]
3079
+
3080
+
3081
+ Processing SessionsController#create (for 0.0.0.0 at 2009-12-11 11:38:39) [POST]
3082
+ Parameters: {"remember_me"=>"0", "login"=>"quentin", "password"=>"monkey"}
3083
+ Redirected to http://test.host/
3084
+ Completed in 8ms (DB: 3) | 302 Found [http://test.host/session?login=quentin&password=monkey&remember_me=0]
3085
+
3086
+
3087
+ Processing SessionsController#create (for 0.0.0.0 at 2009-12-11 11:38:39) [POST]
3088
+ Parameters: {"remember_me"=>"1", "login"=>"quentin", "password"=>"monkey"}
3089
+ Redirected to http://test.host/
3090
+ Completed in 9ms (DB: 3) | 302 Found [http://test.host/session?login=quentin&password=monkey&remember_me=1]
3091
+
3092
+
3093
+ Processing StoriesController#show (for 0.0.0.0 at 2009-12-11 11:38:39) [GET]
3094
+ Parameters: {"id"=>"none-such-story"}
3095
+ Rendering /home/daniel/projects/branston/lib/branston/public/404.html (404 Not Found)
3096
+ Completed in 12ms (View: 3, DB: 27) | 404 Not Found [http://test.host/stories/none-such-story]
3097
+
3098
+
3099
+ Processing StoriesController#show (for 0.0.0.0 at 2009-12-11 11:38:40) [GET]
3100
+ Parameters: {"id"=>#<ActiveSupport::Multibyte::Chars:0x7f32dbfa5e50 @wrapped_string="rerum-iure-minima-debitis">}
3101
+ Rendering template within layouts/main
3102
+ Rendering stories/show
3103
+ Completed in 19ms (View: 15, DB: 13) | 200 OK [http://test.host/stories/rerum-iure-minima-debitis]
3104
+
3105
+
3106
+ Processing StoriesController#create (for 0.0.0.0 at 2009-12-11 11:38:40) [POST]
3107
+ Parameters: {"story"=>{}}
3108
+ Rendering template within layouts/main
3109
+ Rendering stories/new
3110
+ Completed in 41ms (View: 34, DB: 14) | 200 OK [http://test.host/stories?]
3111
+
3112
+
3113
+ Processing StoriesController#create (for 0.0.0.0 at 2009-12-11 11:38:40) [POST]
3114
+ Parameters: {"story"=>{"title"=>"Illo nobis sunt ratione.", "points"=>2, "description"=>"Molestias quam \"quo\" sint voluptates magnam officia vitae. "}}
3115
+ Redirected to http://test.host/stories
3116
+ Completed in 13ms (DB: 25) | 302 Found [http://test.host/stories?story%5Bdescription%5D=Molestias+quam+%22quo%22+sint+voluptates+magnam+officia+vitae.+&story%5Bpoints%5D=2&story%5Btitle%5D=Illo+nobis+sunt+ratione.]
3117
+
3118
+
3119
+ Processing StoriesController#create (for 0.0.0.0 at 2009-12-11 11:38:40) [POST]
3120
+ Parameters: {"story"=>{"title"=>"Placeat doloribus incidunt saepe minus maiores et rerum.", "points"=>2, "description"=>"Consequuntur exercitationem \"reprehenderit\" autem dolorem ut ea voluptatem. ", "iteration_id"=>1}}
3121
+ Redirected to http://test.host/stories
3122
+ Completed in 12ms (DB: 3) | 302 Found [http://test.host/stories?story%5Bdescription%5D=Molestias+quam+%22quo%22+sint+voluptates+magnam+officia+vitae.+&story%5Bpoints%5D=2&story%5Btitle%5D=Illo+nobis+sunt+ratione.]
3123
+
3124
+
3125
+ Processing StoriesController#create (for 0.0.0.0 at 2009-12-11 11:38:41) [POST]
3126
+ Parameters: {"story"=>{"title"=>"Sequi laudantium similique consequatur totam ut asperiores.", "points"=>2, "description"=>"Exercitationem voluptatibus \"ut\" sunt adipisci dicta repellendus est. "}}
3127
+ Redirected to http://test.host/stories
3128
+ Completed in 13ms (DB: 16) | 302 Found [http://test.host/stories?story%5Bdescription%5D=Exercitationem+voluptatibus+%22ut%22+sunt+adipisci+dicta+repellendus+est.+&story%5Bpoints%5D=2&story%5Btitle%5D=Sequi+laudantium+similique+consequatur+totam+ut+asperiores.]
3129
+
3130
+
3131
+ Processing StoriesController#create (for 0.0.0.0 at 2009-12-11 11:38:41) [POST]
3132
+ Parameters: {"story"=>{"title"=>"Asperiores omnis eaque sed veniam dolor.", "points"=>2, "description"=>"Reiciendis occaecati \"officia\" et excepturi placeat. "}}
3133
+ Redirected to http://test.host/stories
3134
+ Completed in 12ms (DB: 15) | 302 Found [http://test.host/stories?story%5Bdescription%5D=Reiciendis+occaecati+%22officia%22+et+excepturi+placeat.+&story%5Bpoints%5D=2&story%5Btitle%5D=Asperiores+omnis+eaque+sed+veniam+dolor.]
3135
+
3136
+
3137
+ Processing StoriesController#destroy (for 0.0.0.0 at 2009-12-11 11:38:41) [DELETE]
3138
+ Parameters: {"id"=>#<ActiveSupport::Multibyte::Chars:0x7f32dc120050 @wrapped_string="perspiciatis-adipisci-aliquam-libero-architecto-iure">}
3139
+ Redirected to http://test.host/stories
3140
+ Completed in 27ms (DB: 21) | 302 Found [http://test.host/stories/perspiciatis-adipisci-aliquam-libero-architecto-iure]
3141
+
3142
+
3143
+ Processing StoriesController#generate_feature (for 0.0.0.0 at 2009-12-11 11:38:42) [GET]
3144
+ Parameters: {"id"=>#<ActiveSupport::Multibyte::Chars:0x7f32dbf34958 @wrapped_string="molestias-modi-esse-ea-quis-aut-eligendi-voluptatem">, "path"=>"test/features/"}
3145
+ Completed in 21ms (View: 1, DB: 19) | 200 OK [http://test.host/stories/molestias-modi-esse-ea-quis-aut-eligendi-voluptatem/generate_feature?path=test%2Ffeatures%2F]
3146
+
3147
+
3148
+ Processing StoriesController#new (for 0.0.0.0 at 2009-12-11 11:38:42) [GET]
3149
+ Rendering template within layouts/main
3150
+ Rendering stories/new
3151
+ Completed in 21ms (View: 17, DB: 15) | 200 OK [http://test.host/stories/new]
3152
+
3153
+
3154
+ Processing StoriesController#edit (for 0.0.0.0 at 2009-12-11 11:38:42) [GET]
3155
+ Parameters: {"id"=>#<ActiveSupport::Multibyte::Chars:0x7f32dc176db0 @wrapped_string="at-aut-voluptatem-aliquam-optio-illum-praesentium">}
3156
+ Rendering template within layouts/main
3157
+ Rendering stories/edit
3158
+ Completed in 26ms (View: 21, DB: 28) | 200 OK [http://test.host/stories/at-aut-voluptatem-aliquam-optio-illum-praesentium/edit]
3159
+
3160
+
3161
+ Processing StoriesController#index (for 0.0.0.0 at 2009-12-11 11:38:42) [GET]
3162
+ Rendering template within layouts/main
3163
+ Rendering stories/index
3164
+ Completed in 65ms (View: 60, DB: 12) | 200 OK [http://test.host/stories]
3165
+
3166
+
3167
+ Processing StoriesController#update (for 0.0.0.0 at 2009-12-11 11:38:42) [PUT]
3168
+ Parameters: {"story"=>{"description"=>""}, "id"=>#<ActiveSupport::Multibyte::Chars:0x7f32dbcd94d8 @wrapped_string="est-aut-ullam-delectus-voluptatem">}
3169
+ Rendering template within layouts/main
3170
+ Rendering stories/edit
3171
+ Completed in 30ms (View: 23, DB: 13) | 200 OK [http://test.host/stories/est-aut-ullam-delectus-voluptatem?story%5Bdescription%5D=]
3172
+
3173
+
3174
+ Processing StoriesController#update (for 0.0.0.0 at 2009-12-11 11:38:43) [PUT]
3175
+ Parameters: {"story"=>{"description"=>"bar"}, "id"=>#<ActiveSupport::Multibyte::Chars:0x7f32dbe761b0 @wrapped_string="non-et-perspiciatis-rem-in">}
3176
+ Redirected to http://test.host/stories/non-et-perspiciatis-rem-in
3177
+ Completed in 13ms (DB: 14) | 302 Found [http://test.host/stories/non-et-perspiciatis-rem-in?story%5Bdescription%5D=bar]
3178
+
3179
+
3180
+ Processing UserRolesController#create (for 0.0.0.0 at 2009-12-11 11:38:44) [POST]
3181
+ Parameters: {"user_role"=>{"name"=>"customer"}}
3182
+ Redirected to http://test.host/user_roles/2
3183
+ Completed in 13ms (DB: 87) | 302 Found [http://test.host/user_roles?user_role%5Bname%5D=customer]
3184
+
3185
+
3186
+ Processing UserRolesController#destroy (for 0.0.0.0 at 2009-12-11 11:38:44) [DELETE]
3187
+ Parameters: {"id"=>"1"}
3188
+ Redirected to http://test.host/user_roles
3189
+ Completed in 6ms (DB: 4) | 302 Found [http://test.host/user_roles/1]
3190
+
3191
+
3192
+ Processing UserRolesController#create (for 0.0.0.0 at 2009-12-11 11:38:44) [POST]
3193
+ Parameters: {"user_role"=>{"name"=>nil}}
3194
+ Rendering template within layouts/main
3195
+ Rendering user_roles/new
3196
+ Completed in 23ms (View: 19, DB: 6) | 200 OK [http://test.host/user_roles?user_role%5Bname%5D=]
3197
+
3198
+
3199
+ Processing UserRolesController#edit (for 0.0.0.0 at 2009-12-11 11:38:44) [GET]
3200
+ Parameters: {"id"=>"1"}
3201
+ Rendering template within layouts/main
3202
+ Rendering user_roles/edit
3203
+ Completed in 19ms (View: 15, DB: 4) | 200 OK [http://test.host/user_roles/1/edit]
3204
+
3205
+
3206
+ Processing UserRolesController#index (for 0.0.0.0 at 2009-12-11 11:38:44) [GET]
3207
+ Rendering template within layouts/main
3208
+ Rendering user_roles/index
3209
+ Completed in 23ms (View: 18, DB: 5) | 200 OK [http://test.host/user_roles]
3210
+
3211
+
3212
+ Processing UserRolesController#new (for 0.0.0.0 at 2009-12-11 11:38:45) [GET]
3213
+ Rendering template within layouts/main
3214
+ Rendering user_roles/new
3215
+ Completed in 15ms (View: 12, DB: 4) | 200 OK [http://test.host/user_roles/new]
3216
+
3217
+
3218
+ Processing UserRolesController#show (for 0.0.0.0 at 2009-12-11 11:38:45) [GET]
3219
+ Parameters: {"id"=>"1"}
3220
+ Rendering template within layouts/main
3221
+ Rendering user_roles/show
3222
+ Completed in 15ms (View: 10, DB: 4) | 200 OK [http://test.host/user_roles/1]
3223
+
3224
+
3225
+ Processing UserRolesController#update (for 0.0.0.0 at 2009-12-11 11:38:45) [PUT]
3226
+ Parameters: {"user_role"=>{"name"=>nil}, "id"=>"1"}
3227
+ Rendering template within layouts/main
3228
+ Rendering user_roles/edit
3229
+ Completed in 27ms (View: 21, DB: 4) | 200 OK [http://test.host/user_roles/1?user_role%5Bname%5D=]
3230
+
3231
+
3232
+ Processing UserRolesController#update (for 0.0.0.0 at 2009-12-11 11:38:45) [PUT]
3233
+ Parameters: {"user_role"=>{"name"=>["beatae", "dolor", "et"]}, "id"=>"1"}
3234
+ Redirected to http://test.host/user_roles/1
3235
+ Completed in 10ms (DB: 5) | 302 Found [http://test.host/user_roles/1?user_role%5Bname%5D%5B%5D=beatae&user_role%5Bname%5D%5B%5D=dolor&user_role%5Bname%5D%5B%5D=et]
3236
+
3237
+
3238
+ Processing UsersController#new (for 0.0.0.0 at 2009-12-11 11:38:45) [GET]
3239
+ Rendering template within layouts/main
3240
+ Rendering users/new
3241
+ Completed in 24ms (View: 16, DB: 26) | 200 OK [http://test.host/signup]
3242
+
3243
+
3244
+ Processing UsersController#create (for 0.0.0.0 at 2009-12-11 11:38:45) [POST]
3245
+ Parameters: {"user"=>{"password_confirmation"=>"quire69", "login"=>"quire", "password"=>"quire69", "email"=>"quire@example.com"}}
3246
+ Redirected to http://test.host/
3247
+ Completed in 12ms (DB: 1) | 302 Found [http://test.host/register?user%5Bemail%5D=quire%40example.com&user%5Blogin%5D=quire&user%5Bpassword%5D=quire69&user%5Bpassword_confirmation%5D=quire69]
3248
+
3249
+
3250
+ Processing UsersController#create (for 0.0.0.0 at 2009-12-11 11:38:46) [POST]
3251
+ Parameters: {"user"=>{"password_confirmation"=>"quire69", "login"=>"quire", "password"=>"quire69", "email"=>nil}}
3252
+ Rendering template within layouts/main
3253
+ Rendering users/new
3254
+ Completed in 34ms (View: 26, DB: 1) | 200 OK [http://test.host/register?user%5Bemail%5D=&user%5Blogin%5D=quire&user%5Bpassword%5D=quire69&user%5Bpassword_confirmation%5D=quire69]
3255
+
3256
+
3257
+ Processing UsersController#create (for 0.0.0.0 at 2009-12-11 11:38:46) [POST]
3258
+ Parameters: {"user"=>{"password_confirmation"=>"quire69", "login"=>nil, "password"=>"quire69", "email"=>"quire@example.com"}}
3259
+ Rendering template within layouts/main
3260
+ Rendering users/new
3261
+ Completed in 33ms (View: 26, DB: 2) | 200 OK [http://test.host/register?user%5Bemail%5D=quire%40example.com&user%5Blogin%5D=&user%5Bpassword%5D=quire69&user%5Bpassword_confirmation%5D=quire69]
3262
+
3263
+
3264
+ Processing UsersController#create (for 0.0.0.0 at 2009-12-11 11:38:46) [POST]
3265
+ Parameters: {"user"=>{"password_confirmation"=>nil, "login"=>"quire", "password"=>"quire69", "email"=>"quire@example.com"}}
3266
+ Rendering template within layouts/main
3267
+ Rendering users/new
3268
+ Completed in 26ms (View: 19, DB: 1) | 200 OK [http://test.host/register?user%5Bemail%5D=quire%40example.com&user%5Blogin%5D=quire&user%5Bpassword%5D=quire69&user%5Bpassword_confirmation%5D=]
3269
+
3270
+
3271
+ Processing UsersController#create (for 0.0.0.0 at 2009-12-11 11:38:46) [POST]
3272
+ Parameters: {"user"=>{"password_confirmation"=>"quire69", "login"=>"quire", "password"=>nil, "email"=>"quire@example.com"}}
3273
+ Rendering template within layouts/main
3274
+ Rendering users/new
3275
+ Completed in 34ms (View: 26, DB: 1) | 200 OK [http://test.host/register?user%5Bemail%5D=quire%40example.com&user%5Blogin%5D=quire&user%5Bpassword%5D=&user%5Bpassword_confirmation%5D=quire69]