tech_radar 0.0.1
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.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +35 -0
- data/app/assets/javascripts/tech_radar/application.js +13 -0
- data/app/assets/stylesheets/tech_radar/application.scss +15 -0
- data/app/controllers/tech_radar/application_controller.rb +6 -0
- data/app/controllers/tech_radar/quadrants_controller.rb +11 -0
- data/app/controllers/tech_radar/radar_controller.rb +14 -0
- data/app/controllers/tech_radar/rings_controller.rb +11 -0
- data/app/controllers/tech_radar/technologies_controller.rb +13 -0
- data/app/helpers/tech_radar/application_helper.rb +26 -0
- data/app/models/tech_radar/quadrant.rb +4 -0
- data/app/models/tech_radar/radar.rb +63 -0
- data/app/models/tech_radar/ring.rb +3 -0
- data/app/models/tech_radar/technology.rb +5 -0
- data/app/views/layouts/tech_radar/application.html.erb +21 -0
- data/app/views/tech_radar/quadrants/show.html.erb +33 -0
- data/app/views/tech_radar/radar/index.html.erb +49 -0
- data/app/views/tech_radar/radar/summary.html.erb +30 -0
- data/app/views/tech_radar/rings/show.html.erb +30 -0
- data/app/views/tech_radar/technologies/index.html.erb +23 -0
- data/app/views/tech_radar/technologies/show.html.erb +43 -0
- data/config/locales/en.yml +58 -0
- data/config/routes.rb +8 -0
- data/lib/tasks/tech_radar_tasks.rake +4 -0
- data/lib/tech_radar/engine.rb +5 -0
- data/lib/tech_radar/version.rb +3 -0
- data/lib/tech_radar.rb +11 -0
- data/test/controllers/tech_radar/quadrants_controller_test.rb +17 -0
- data/test/controllers/tech_radar/radar_controller_test.rb +21 -0
- data/test/controllers/tech_radar/technologies_controller_test.rb +44 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config/application.rb +29 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +38 -0
- data/test/dummy/config/environments/production.rb +76 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +9 -0
- data/test/dummy/config/locales/en.yml +6 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config/tech-radar.yml +94 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/log/test.log +3014 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/1IKk2C4YRauMr_7Wz-CU4Irtdnkr79tOQd1jE0PWji4.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/4jiHLR_loKdeAd0JcA82pbx9uv_uZ061yoAW5ILVke0.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +2 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/5hNPdJ-QvbvonKnV_4WtyMMSIsLK6XcQ3dqEm7lk5Yg.cache +3 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/8YDI2KKHwSLb86O9q_L34QpLWGcYoGfRw3pVUc6AXL4.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/CTIhnJYFsEH9tShUP9_EAv4FFdKuxME8e0cIwqdIu2w.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/CtNMnfyrkEQeOnvFA-fvdjW_oul9mgnsSLkCpUnNzpI.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Cu68hI8JKlbssICAWZh6Zk2l6ItX5KkKP9kCDDyN6Yc.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/DcWGpVSBeGg8GE4YanvpgWTYVRezVuYgxd4WP0xTG5Y.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/E9psQWSZsOiAp5jeWlqMdrJv2l1rZTWHZbmsnEbKvN8.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ExmO5_Val1Y7VJGCSLFP1wx8iANj0Wirfm6PhW_PJRM.cache +3 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/FqMJmO4uMYjcalOHO_9_PmpeS0EGPj2s_B5OVOmc9NI.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/H2416jAaRBSU35oLo5rnBz43Udk1pJ-CK5x5Q1SHxZQ.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/J1ZK5MuwwE_oKwdRBt07dXeGtnWf5IWSEVBBH4dj4wg.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/JSGgn6gHG6gP_t3N6_5z0P3Mmqkg2ZdhnSRz1ivZVf4.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Lm2MxqZ9br-5beQtEBAvojOOAc9btQusIwLlN2hDqcI.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/M4Vx5DqzQqmfihPkefVIR1UwUJI9weunCiDqzZ8mmWQ.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/N9GBhDB3oo8hX7mehgcE6Sylr-2KgoFKWV-97uSKncs.cache +2 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +3 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/X17E_hQiWRCM38iR5NTruI8CqF3BdEXj0jxQ0OMYmZM.cache +2 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ZWMSse5xwAn4lVdnOdzP7aamfJLIIJ3tgM_K6QgcID8.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/_Mh7lJN_IwpWjIHi_ipCLitIWuSaytWCt4Uaa_9__jk.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ddThsRgEK7CMiOeJAoKDc2u5XtMMckYrtLrU6l1OMSE.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/fQWuPc3zow9d7NdDqJfW-GhJVLVY1l--t75LhXdW6J8.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/h3jqUoCq7UB6lqi_uNq2KvLeg8IL_lP7JCUy5f2THjg.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +3 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/iN-4vwzGEOKQmOV_1xlm5xaE-sVreqvPz91kILjcpbA.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/jDzXj5We0E1Dn8NHOcZAsZkmOuIEkc1nYr0iQAiSb8o.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/lvcTaXyJ-7szvUf-sYbvA1-nyJTVyID06rjZvrbr1S4.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/nkNCYpk1UlnSzoHoaAju8L7NmNHCc7qQumYZDCvcXCk.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +2 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ptDPhzkjEXOWKqfzGjc-EgPg2tSxTq4V2JguIA9TX0A.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/rDves_tz9XyBMoqG8wHncbqTXD1XfkDoCG_yQyCPYrY.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/uHvIkDeFAy-0stCt8jyUtRf666EYXAmFfRHK3Kclt0k.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/wjc4fxI0T-E_AMREBsqAzcOoJVLQ2XmN8ybSXr2sA1c.cache +0 -0
- data/test/integration/navigation_test.rb +8 -0
- data/test/models/tech_radar/radar_test.rb +59 -0
- data/test/test_helper.rb +20 -0
- metadata +281 -0
|
@@ -0,0 +1,3014 @@
|
|
|
1
|
+
-------------------------
|
|
2
|
+
TechRadarTest: test_truth
|
|
3
|
+
-------------------------
|
|
4
|
+
-----------------------------------------------------
|
|
5
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
6
|
+
-----------------------------------------------------
|
|
7
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
8
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (0.8ms)
|
|
9
|
+
Completed 200 OK in 247ms (Views: 246.7ms)
|
|
10
|
+
-------------------------
|
|
11
|
+
TechRadarTest: test_truth
|
|
12
|
+
-------------------------
|
|
13
|
+
-------------------------
|
|
14
|
+
TechRadarTest: test_truth
|
|
15
|
+
-------------------------
|
|
16
|
+
-----------------------------------------------------
|
|
17
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
18
|
+
-----------------------------------------------------
|
|
19
|
+
-----------------------------------------------------
|
|
20
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
21
|
+
-----------------------------------------------------
|
|
22
|
+
-------------------------
|
|
23
|
+
TechRadarTest: test_truth
|
|
24
|
+
-------------------------
|
|
25
|
+
-----------------------------------------------------
|
|
26
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
27
|
+
-----------------------------------------------------
|
|
28
|
+
-------------------------
|
|
29
|
+
TechRadarTest: test_truth
|
|
30
|
+
-------------------------
|
|
31
|
+
-------------------------
|
|
32
|
+
TechRadarTest: test_truth
|
|
33
|
+
-------------------------
|
|
34
|
+
-----------------------------------------------------
|
|
35
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
36
|
+
-----------------------------------------------------
|
|
37
|
+
-----------------------------------------------------
|
|
38
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
39
|
+
-----------------------------------------------------
|
|
40
|
+
-------------------------
|
|
41
|
+
TechRadarTest: test_truth
|
|
42
|
+
-------------------------
|
|
43
|
+
-----------------------------------------------------
|
|
44
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
45
|
+
-----------------------------------------------------
|
|
46
|
+
-------------------------
|
|
47
|
+
TechRadarTest: test_truth
|
|
48
|
+
-------------------------
|
|
49
|
+
-------------------------
|
|
50
|
+
TechRadarTest: test_truth
|
|
51
|
+
-------------------------
|
|
52
|
+
-----------------------------------------------------
|
|
53
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
54
|
+
-----------------------------------------------------
|
|
55
|
+
-------------------------
|
|
56
|
+
TechRadarTest: test_truth
|
|
57
|
+
-------------------------
|
|
58
|
+
-----------------------------------------------------
|
|
59
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
60
|
+
-----------------------------------------------------
|
|
61
|
+
-----------------------------------------------------
|
|
62
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
63
|
+
-----------------------------------------------------
|
|
64
|
+
-------------------------
|
|
65
|
+
TechRadarTest: test_truth
|
|
66
|
+
-------------------------
|
|
67
|
+
-----------------------------------------------------
|
|
68
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
69
|
+
-----------------------------------------------------
|
|
70
|
+
-------------------------
|
|
71
|
+
TechRadarTest: test_truth
|
|
72
|
+
-------------------------
|
|
73
|
+
-----------------------------------------------------
|
|
74
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
75
|
+
-----------------------------------------------------
|
|
76
|
+
-------------------------
|
|
77
|
+
TechRadarTest: test_truth
|
|
78
|
+
-------------------------
|
|
79
|
+
-----------------------------------------------------
|
|
80
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
81
|
+
-----------------------------------------------------
|
|
82
|
+
-------------------------
|
|
83
|
+
TechRadarTest: test_truth
|
|
84
|
+
-------------------------
|
|
85
|
+
-------------------------
|
|
86
|
+
TechRadarTest: test_truth
|
|
87
|
+
-------------------------
|
|
88
|
+
-----------------------------------------------------
|
|
89
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
90
|
+
-----------------------------------------------------
|
|
91
|
+
-----------------------------------------------------
|
|
92
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
93
|
+
-----------------------------------------------------
|
|
94
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
95
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (1.1ms)
|
|
96
|
+
Completed 200 OK in 149ms (Views: 148.9ms)
|
|
97
|
+
-------------------------
|
|
98
|
+
TechRadarTest: test_truth
|
|
99
|
+
-------------------------
|
|
100
|
+
-------------------------
|
|
101
|
+
TechRadarTest: test_truth
|
|
102
|
+
-------------------------
|
|
103
|
+
-----------------------------------------------------
|
|
104
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
105
|
+
-----------------------------------------------------
|
|
106
|
+
-------------------------
|
|
107
|
+
TechRadarTest: test_truth
|
|
108
|
+
-------------------------
|
|
109
|
+
-----------------------------------------------------
|
|
110
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
111
|
+
-----------------------------------------------------
|
|
112
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
113
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (1.3ms)
|
|
114
|
+
Completed 200 OK in 144ms (Views: 143.8ms)
|
|
115
|
+
-----------------------------------------------------
|
|
116
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
117
|
+
-----------------------------------------------------
|
|
118
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
119
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (0.9ms)
|
|
120
|
+
Completed 200 OK in 146ms (Views: 145.5ms)
|
|
121
|
+
-------------------------
|
|
122
|
+
TechRadarTest: test_truth
|
|
123
|
+
-------------------------
|
|
124
|
+
-------------------------
|
|
125
|
+
TechRadarTest: test_truth
|
|
126
|
+
-------------------------
|
|
127
|
+
-----------------------------------------------------
|
|
128
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
129
|
+
-----------------------------------------------------
|
|
130
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
131
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (1.2ms)
|
|
132
|
+
Completed 200 OK in 148ms (Views: 148.0ms)
|
|
133
|
+
-------------------------
|
|
134
|
+
TechRadarTest: test_truth
|
|
135
|
+
-------------------------
|
|
136
|
+
-----------------------------------------------------
|
|
137
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
138
|
+
-----------------------------------------------------
|
|
139
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
140
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (4.8ms)
|
|
141
|
+
Completed 200 OK in 158ms (Views: 158.2ms)
|
|
142
|
+
-------------------------
|
|
143
|
+
TechRadarTest: test_truth
|
|
144
|
+
-------------------------
|
|
145
|
+
-----------------------------------------------------
|
|
146
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
147
|
+
-----------------------------------------------------
|
|
148
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
149
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (5.5ms)
|
|
150
|
+
Completed 200 OK in 176ms (Views: 175.6ms)
|
|
151
|
+
-----------------------------------------------------
|
|
152
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
153
|
+
-----------------------------------------------------
|
|
154
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
155
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (3.6ms)
|
|
156
|
+
Completed 200 OK in 168ms (Views: 167.8ms)
|
|
157
|
+
-------------------------
|
|
158
|
+
TechRadarTest: test_truth
|
|
159
|
+
-------------------------
|
|
160
|
+
-------------------------
|
|
161
|
+
TechRadarTest: test_truth
|
|
162
|
+
-------------------------
|
|
163
|
+
-----------------------------------------------------
|
|
164
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
165
|
+
-----------------------------------------------------
|
|
166
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
167
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (3.3ms)
|
|
168
|
+
Completed 200 OK in 163ms (Views: 162.6ms)
|
|
169
|
+
-----------------------------------------------------
|
|
170
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
171
|
+
-----------------------------------------------------
|
|
172
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
173
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (4.5ms)
|
|
174
|
+
Completed 200 OK in 167ms (Views: 166.5ms)
|
|
175
|
+
-------------------------
|
|
176
|
+
TechRadarTest: test_truth
|
|
177
|
+
-------------------------
|
|
178
|
+
-----------------------------------------------------
|
|
179
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
180
|
+
-----------------------------------------------------
|
|
181
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
182
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (10.7ms)
|
|
183
|
+
Completed 200 OK in 165ms (Views: 165.1ms)
|
|
184
|
+
-------------------------
|
|
185
|
+
TechRadarTest: test_truth
|
|
186
|
+
-------------------------
|
|
187
|
+
-------------------------
|
|
188
|
+
TechRadarTest: test_truth
|
|
189
|
+
-------------------------
|
|
190
|
+
-----------------------------------------------------
|
|
191
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
192
|
+
-----------------------------------------------------
|
|
193
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
194
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (3.9ms)
|
|
195
|
+
Completed 200 OK in 159ms (Views: 158.4ms)
|
|
196
|
+
-------------------------
|
|
197
|
+
TechRadarTest: test_truth
|
|
198
|
+
-------------------------
|
|
199
|
+
-----------------------------------------------------
|
|
200
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
201
|
+
-----------------------------------------------------
|
|
202
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
203
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (4.7ms)
|
|
204
|
+
Completed 200 OK in 161ms (Views: 160.7ms)
|
|
205
|
+
-------------------------
|
|
206
|
+
TechRadarTest: test_truth
|
|
207
|
+
-------------------------
|
|
208
|
+
-----------------------------------------------------
|
|
209
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
210
|
+
-----------------------------------------------------
|
|
211
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
212
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (4.6ms)
|
|
213
|
+
Completed 200 OK in 164ms (Views: 164.2ms)
|
|
214
|
+
-----------------------------------------------------
|
|
215
|
+
TechRadar::RadarControllerTest: test_should_get_index
|
|
216
|
+
-----------------------------------------------------
|
|
217
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
218
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (3.8ms)
|
|
219
|
+
Completed 200 OK in 165ms (Views: 164.6ms)
|
|
220
|
+
-------------------------
|
|
221
|
+
TechRadarTest: test_truth
|
|
222
|
+
-------------------------
|
|
223
|
+
-------------------------
|
|
224
|
+
TechRadarTest: test_truth
|
|
225
|
+
-------------------------
|
|
226
|
+
---------------------------------------------------------------------
|
|
227
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
228
|
+
---------------------------------------------------------------------
|
|
229
|
+
---------------------------------------------------------------------
|
|
230
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
231
|
+
---------------------------------------------------------------------
|
|
232
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
233
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (5.5ms)
|
|
234
|
+
Completed 200 OK in 157ms (Views: 156.6ms)
|
|
235
|
+
-------------------------
|
|
236
|
+
TechRadarTest: test_truth
|
|
237
|
+
-------------------------
|
|
238
|
+
-------------------------
|
|
239
|
+
TechRadarTest: test_truth
|
|
240
|
+
-------------------------
|
|
241
|
+
---------------------------------------------------------------------
|
|
242
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
243
|
+
---------------------------------------------------------------------
|
|
244
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
245
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (10.8ms)
|
|
246
|
+
Completed 200 OK in 186ms (Views: 186.0ms)
|
|
247
|
+
-----------------------------------------------------------
|
|
248
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
249
|
+
-----------------------------------------------------------
|
|
250
|
+
-------------------------
|
|
251
|
+
TechRadarTest: test_truth
|
|
252
|
+
-------------------------
|
|
253
|
+
---------------------------------------------------------------------
|
|
254
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
255
|
+
---------------------------------------------------------------------
|
|
256
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
257
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (4.3ms)
|
|
258
|
+
Completed 200 OK in 150ms (Views: 149.6ms)
|
|
259
|
+
-----------------------------------------------------------
|
|
260
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
261
|
+
-----------------------------------------------------------
|
|
262
|
+
---------------------------------------------------------------------
|
|
263
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
264
|
+
---------------------------------------------------------------------
|
|
265
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
266
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (4.3ms)
|
|
267
|
+
Completed 200 OK in 156ms (Views: 155.8ms)
|
|
268
|
+
-----------------------------------------------------------
|
|
269
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
270
|
+
-----------------------------------------------------------
|
|
271
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
272
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
273
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
274
|
+
-------------------------
|
|
275
|
+
TechRadarTest: test_truth
|
|
276
|
+
-------------------------
|
|
277
|
+
-------------------------------------------------
|
|
278
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
279
|
+
-------------------------------------------------
|
|
280
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
281
|
+
Completed 500 Internal Server Error in 11ms
|
|
282
|
+
------------------------------------------------
|
|
283
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
284
|
+
------------------------------------------------
|
|
285
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
286
|
+
Parameters: {"id"=>"1"}
|
|
287
|
+
Completed 500 Internal Server Error in 3ms
|
|
288
|
+
-------------------------
|
|
289
|
+
TechRadarTest: test_truth
|
|
290
|
+
-------------------------
|
|
291
|
+
---------------------------------------------------------------------
|
|
292
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
293
|
+
---------------------------------------------------------------------
|
|
294
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
295
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (3.6ms)
|
|
296
|
+
Completed 200 OK in 139ms (Views: 138.7ms)
|
|
297
|
+
-----------------------------------------------------------
|
|
298
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
299
|
+
-----------------------------------------------------------
|
|
300
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
301
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
302
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
303
|
+
-------------------------------------------------
|
|
304
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
305
|
+
-------------------------------------------------
|
|
306
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
307
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (1.0ms)
|
|
308
|
+
Completed 200 OK in 149ms (Views: 149.4ms)
|
|
309
|
+
------------------------------------------------
|
|
310
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
311
|
+
------------------------------------------------
|
|
312
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
313
|
+
Parameters: {"id"=>"1"}
|
|
314
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.2ms)
|
|
315
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
|
316
|
+
---------------------------------------------------------------------
|
|
317
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
318
|
+
---------------------------------------------------------------------
|
|
319
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
320
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.4ms)
|
|
321
|
+
Completed 200 OK in 7ms (Views: 7.2ms)
|
|
322
|
+
-----------------------------------------------------------
|
|
323
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
324
|
+
-----------------------------------------------------------
|
|
325
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
326
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.3ms)
|
|
327
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
|
328
|
+
-------------------------
|
|
329
|
+
TechRadarTest: test_truth
|
|
330
|
+
-------------------------
|
|
331
|
+
---------------------------------------------------------------------
|
|
332
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
333
|
+
---------------------------------------------------------------------
|
|
334
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
335
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (6.8ms)
|
|
336
|
+
Completed 200 OK in 137ms (Views: 136.9ms)
|
|
337
|
+
-----------------------------------------------------------
|
|
338
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
339
|
+
-----------------------------------------------------------
|
|
340
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
341
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
342
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
|
343
|
+
-------------------------
|
|
344
|
+
TechRadarTest: test_truth
|
|
345
|
+
-------------------------
|
|
346
|
+
-------------------------------------------------
|
|
347
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
348
|
+
-------------------------------------------------
|
|
349
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
350
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.2ms)
|
|
351
|
+
Completed 200 OK in 5ms (Views: 4.6ms)
|
|
352
|
+
------------------------------------------------
|
|
353
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
354
|
+
------------------------------------------------
|
|
355
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
356
|
+
Parameters: {"id"=>"1"}
|
|
357
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.2ms)
|
|
358
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
359
|
+
---------------------------------------------------------------------
|
|
360
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
361
|
+
---------------------------------------------------------------------
|
|
362
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
363
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (4.5ms)
|
|
364
|
+
Completed 200 OK in 153ms (Views: 152.8ms)
|
|
365
|
+
-----------------------------------------------------------
|
|
366
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
367
|
+
-----------------------------------------------------------
|
|
368
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
369
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
370
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
371
|
+
-------------------------
|
|
372
|
+
TechRadarTest: test_truth
|
|
373
|
+
-------------------------
|
|
374
|
+
-------------------------------------------------
|
|
375
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
376
|
+
-------------------------------------------------
|
|
377
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
378
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.2ms)
|
|
379
|
+
Completed 200 OK in 5ms (Views: 4.9ms)
|
|
380
|
+
------------------------------------------------
|
|
381
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
382
|
+
------------------------------------------------
|
|
383
|
+
---------------------------------------------------------------------
|
|
384
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
385
|
+
---------------------------------------------------------------------
|
|
386
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
387
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (6.0ms)
|
|
388
|
+
Completed 200 OK in 147ms (Views: 147.0ms)
|
|
389
|
+
-----------------------------------------------------------
|
|
390
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
391
|
+
-----------------------------------------------------------
|
|
392
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
393
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
394
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
395
|
+
-------------------------------------------------
|
|
396
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
397
|
+
-------------------------------------------------
|
|
398
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
399
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.3ms)
|
|
400
|
+
Completed 200 OK in 5ms (Views: 5.1ms)
|
|
401
|
+
------------------------------------------------
|
|
402
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
403
|
+
------------------------------------------------
|
|
404
|
+
-------------------------
|
|
405
|
+
TechRadarTest: test_truth
|
|
406
|
+
-------------------------
|
|
407
|
+
-------------------------------------------------
|
|
408
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
409
|
+
-------------------------------------------------
|
|
410
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
411
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (2.1ms)
|
|
412
|
+
Completed 200 OK in 141ms (Views: 141.3ms)
|
|
413
|
+
------------------------------------------------
|
|
414
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
415
|
+
------------------------------------------------
|
|
416
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
417
|
+
Parameters: {"id"=>"1"}
|
|
418
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
419
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
420
|
+
-------------------------
|
|
421
|
+
TechRadarTest: test_truth
|
|
422
|
+
-------------------------
|
|
423
|
+
-----------------------------------------------------------
|
|
424
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
425
|
+
-----------------------------------------------------------
|
|
426
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
427
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.3ms)
|
|
428
|
+
Completed 200 OK in 5ms (Views: 4.5ms)
|
|
429
|
+
---------------------------------------------------------------------
|
|
430
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
431
|
+
---------------------------------------------------------------------
|
|
432
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
433
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.3ms)
|
|
434
|
+
Completed 200 OK in 5ms (Views: 4.6ms)
|
|
435
|
+
---------------------------------------------------------------------
|
|
436
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
437
|
+
---------------------------------------------------------------------
|
|
438
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
439
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (3.9ms)
|
|
440
|
+
Completed 200 OK in 143ms (Views: 142.9ms)
|
|
441
|
+
-----------------------------------------------------------
|
|
442
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
443
|
+
-----------------------------------------------------------
|
|
444
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
445
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.3ms)
|
|
446
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
447
|
+
-------------------------------------------------
|
|
448
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
449
|
+
-------------------------------------------------
|
|
450
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
451
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.2ms)
|
|
452
|
+
Completed 200 OK in 5ms (Views: 4.6ms)
|
|
453
|
+
------------------------------------------------
|
|
454
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
455
|
+
------------------------------------------------
|
|
456
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
457
|
+
Parameters: {"id"=>"1"}
|
|
458
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
459
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
460
|
+
-------------------------
|
|
461
|
+
TechRadarTest: test_truth
|
|
462
|
+
-------------------------
|
|
463
|
+
---------------------------------------------------------------------
|
|
464
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
465
|
+
---------------------------------------------------------------------
|
|
466
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
467
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (6.2ms)
|
|
468
|
+
Completed 200 OK in 146ms (Views: 146.3ms)
|
|
469
|
+
-----------------------------------------------------------
|
|
470
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
471
|
+
-----------------------------------------------------------
|
|
472
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
473
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.3ms)
|
|
474
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
|
475
|
+
------------------------------------------------
|
|
476
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
477
|
+
------------------------------------------------
|
|
478
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
479
|
+
Parameters: {"id"=>"1"}
|
|
480
|
+
Completed 500 Internal Server Error in 0ms
|
|
481
|
+
-------------------------------------------------
|
|
482
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
483
|
+
-------------------------------------------------
|
|
484
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
485
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.3ms)
|
|
486
|
+
Completed 200 OK in 5ms (Views: 4.9ms)
|
|
487
|
+
-------------------------
|
|
488
|
+
TechRadarTest: test_truth
|
|
489
|
+
-------------------------
|
|
490
|
+
-------------------------
|
|
491
|
+
TechRadarTest: test_truth
|
|
492
|
+
-------------------------
|
|
493
|
+
------------------------------------------------
|
|
494
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
495
|
+
------------------------------------------------
|
|
496
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
497
|
+
Parameters: {"id"=>"1"}
|
|
498
|
+
Completed 500 Internal Server Error in 0ms
|
|
499
|
+
-------------------------------------------------
|
|
500
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
501
|
+
-------------------------------------------------
|
|
502
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
503
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (1.0ms)
|
|
504
|
+
Completed 200 OK in 138ms (Views: 137.6ms)
|
|
505
|
+
---------------------------------------------------------------------
|
|
506
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
507
|
+
---------------------------------------------------------------------
|
|
508
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
509
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.9ms)
|
|
510
|
+
Completed 200 OK in 8ms (Views: 8.0ms)
|
|
511
|
+
-----------------------------------------------------------
|
|
512
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
513
|
+
-----------------------------------------------------------
|
|
514
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
515
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.4ms)
|
|
516
|
+
Completed 200 OK in 3ms (Views: 3.1ms)
|
|
517
|
+
-------------------------
|
|
518
|
+
TechRadarTest: test_truth
|
|
519
|
+
-------------------------
|
|
520
|
+
---------------------------------------------------------------------
|
|
521
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
522
|
+
---------------------------------------------------------------------
|
|
523
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
524
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (5.8ms)
|
|
525
|
+
Completed 200 OK in 148ms (Views: 148.2ms)
|
|
526
|
+
-----------------------------------------------------------
|
|
527
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
528
|
+
-----------------------------------------------------------
|
|
529
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
530
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.3ms)
|
|
531
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
532
|
+
------------------------------------------------
|
|
533
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
534
|
+
------------------------------------------------
|
|
535
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
536
|
+
Parameters: {"id"=>"1"}
|
|
537
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (9.0ms)
|
|
538
|
+
Completed 500 Internal Server Error in 13ms
|
|
539
|
+
-------------------------------------------------
|
|
540
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
541
|
+
-------------------------------------------------
|
|
542
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
543
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.3ms)
|
|
544
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
545
|
+
------------------------------------------------
|
|
546
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
547
|
+
------------------------------------------------
|
|
548
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
549
|
+
Parameters: {"id"=>"1"}
|
|
550
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (1.1ms)
|
|
551
|
+
Completed 200 OK in 147ms (Views: 147.0ms)
|
|
552
|
+
-------------------------------------------------
|
|
553
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
554
|
+
-------------------------------------------------
|
|
555
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
556
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.2ms)
|
|
557
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
|
558
|
+
---------------------------------------------------------------------
|
|
559
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
560
|
+
---------------------------------------------------------------------
|
|
561
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
562
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.5ms)
|
|
563
|
+
Completed 200 OK in 7ms (Views: 7.2ms)
|
|
564
|
+
-----------------------------------------------------------
|
|
565
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
566
|
+
-----------------------------------------------------------
|
|
567
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
568
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
569
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
570
|
+
-------------------------
|
|
571
|
+
TechRadarTest: test_truth
|
|
572
|
+
-------------------------
|
|
573
|
+
-------------------------
|
|
574
|
+
TechRadarTest: test_truth
|
|
575
|
+
-------------------------
|
|
576
|
+
-------------------------------------------------
|
|
577
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
578
|
+
-------------------------------------------------
|
|
579
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
580
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (1.0ms)
|
|
581
|
+
Completed 200 OK in 144ms (Views: 144.0ms)
|
|
582
|
+
------------------------------------------------
|
|
583
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
584
|
+
------------------------------------------------
|
|
585
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
586
|
+
Parameters: {"id"=>"1"}
|
|
587
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
588
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
|
589
|
+
-----------------------------------------------------------
|
|
590
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
591
|
+
-----------------------------------------------------------
|
|
592
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
593
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
594
|
+
Completed 200 OK in 5ms (Views: 4.6ms)
|
|
595
|
+
---------------------------------------------------------------------
|
|
596
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
597
|
+
---------------------------------------------------------------------
|
|
598
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
599
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.4ms)
|
|
600
|
+
Completed 200 OK in 5ms (Views: 4.6ms)
|
|
601
|
+
------------------------------------------------
|
|
602
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
603
|
+
------------------------------------------------
|
|
604
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
605
|
+
Parameters: {"id"=>"1"}
|
|
606
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (3.2ms)
|
|
607
|
+
Completed 200 OK in 145ms (Views: 144.6ms)
|
|
608
|
+
-------------------------------------------------
|
|
609
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
610
|
+
-------------------------------------------------
|
|
611
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
612
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.3ms)
|
|
613
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
614
|
+
-----------------------------------------------------------
|
|
615
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
616
|
+
-----------------------------------------------------------
|
|
617
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
618
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.3ms)
|
|
619
|
+
Completed 200 OK in 6ms (Views: 5.5ms)
|
|
620
|
+
---------------------------------------------------------------------
|
|
621
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
622
|
+
---------------------------------------------------------------------
|
|
623
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
624
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.5ms)
|
|
625
|
+
Completed 200 OK in 5ms (Views: 4.8ms)
|
|
626
|
+
-------------------------
|
|
627
|
+
TechRadarTest: test_truth
|
|
628
|
+
-------------------------
|
|
629
|
+
-------------------------
|
|
630
|
+
TechRadarTest: test_truth
|
|
631
|
+
-------------------------
|
|
632
|
+
---------------------------------------------------------------------
|
|
633
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
634
|
+
---------------------------------------------------------------------
|
|
635
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
636
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (3.8ms)
|
|
637
|
+
Completed 200 OK in 146ms (Views: 145.8ms)
|
|
638
|
+
-----------------------------------------------------------
|
|
639
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
640
|
+
-----------------------------------------------------------
|
|
641
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
642
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.4ms)
|
|
643
|
+
Completed 200 OK in 3ms (Views: 3.0ms)
|
|
644
|
+
------------------------------------------------
|
|
645
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
646
|
+
------------------------------------------------
|
|
647
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
648
|
+
Parameters: {"id"=>"1"}
|
|
649
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
650
|
+
Completed 200 OK in 5ms (Views: 4.9ms)
|
|
651
|
+
-------------------------------------------------
|
|
652
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
653
|
+
-------------------------------------------------
|
|
654
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
655
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.3ms)
|
|
656
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
|
657
|
+
---------------------------------------------------------------------
|
|
658
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
659
|
+
---------------------------------------------------------------------
|
|
660
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
661
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (6.0ms)
|
|
662
|
+
Completed 200 OK in 147ms (Views: 146.6ms)
|
|
663
|
+
-----------------------------------------------------------
|
|
664
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
665
|
+
-----------------------------------------------------------
|
|
666
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
667
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.3ms)
|
|
668
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
669
|
+
-------------------------
|
|
670
|
+
TechRadarTest: test_truth
|
|
671
|
+
-------------------------
|
|
672
|
+
-------------------------------------------------
|
|
673
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
674
|
+
-------------------------------------------------
|
|
675
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
676
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
677
|
+
Completed 200 OK in 5ms (Views: 4.7ms)
|
|
678
|
+
------------------------------------------------
|
|
679
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
680
|
+
------------------------------------------------
|
|
681
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
682
|
+
Parameters: {"id"=>"1"}
|
|
683
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
684
|
+
Completed 200 OK in 3ms (Views: 3.0ms)
|
|
685
|
+
-------------------------
|
|
686
|
+
TechRadarTest: test_truth
|
|
687
|
+
-------------------------
|
|
688
|
+
-------------------------------------------------
|
|
689
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
690
|
+
-------------------------------------------------
|
|
691
|
+
------------------------------------------------
|
|
692
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
693
|
+
------------------------------------------------
|
|
694
|
+
-----------------------------------------------------------
|
|
695
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
696
|
+
-----------------------------------------------------------
|
|
697
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
698
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.9ms)
|
|
699
|
+
Completed 200 OK in 130ms (Views: 129.6ms)
|
|
700
|
+
---------------------------------------------------------------------
|
|
701
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
702
|
+
---------------------------------------------------------------------
|
|
703
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
704
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.4ms)
|
|
705
|
+
Completed 200 OK in 5ms (Views: 4.7ms)
|
|
706
|
+
-------------------------
|
|
707
|
+
TechRadarTest: test_truth
|
|
708
|
+
-------------------------
|
|
709
|
+
-------------------------------------------------
|
|
710
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
711
|
+
-------------------------------------------------
|
|
712
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
713
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (3.0ms)
|
|
714
|
+
Completed 200 OK in 135ms (Views: 135.1ms)
|
|
715
|
+
------------------------------------------------
|
|
716
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
717
|
+
------------------------------------------------
|
|
718
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
719
|
+
Parameters: {"id"=>"1"}
|
|
720
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
721
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
|
722
|
+
---------------------------------------------------------------------
|
|
723
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
724
|
+
---------------------------------------------------------------------
|
|
725
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
726
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (3.0ms)
|
|
727
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
|
728
|
+
-----------------------------------------------------------
|
|
729
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
730
|
+
-----------------------------------------------------------
|
|
731
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
732
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
733
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
734
|
+
-----------------------------------------------------------
|
|
735
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
736
|
+
-----------------------------------------------------------
|
|
737
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
738
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.9ms)
|
|
739
|
+
Completed 200 OK in 143ms (Views: 142.7ms)
|
|
740
|
+
---------------------------------------------------------------------
|
|
741
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
742
|
+
---------------------------------------------------------------------
|
|
743
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
744
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.4ms)
|
|
745
|
+
Completed 200 OK in 5ms (Views: 4.6ms)
|
|
746
|
+
-------------------------
|
|
747
|
+
TechRadarTest: test_truth
|
|
748
|
+
-------------------------
|
|
749
|
+
-------------------------------------------------
|
|
750
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
751
|
+
-------------------------------------------------
|
|
752
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
753
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.3ms)
|
|
754
|
+
Completed 200 OK in 5ms (Views: 4.5ms)
|
|
755
|
+
------------------------------------------------
|
|
756
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
757
|
+
------------------------------------------------
|
|
758
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
759
|
+
Parameters: {"id"=>"1"}
|
|
760
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
761
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
762
|
+
-------------------------
|
|
763
|
+
TechRadarTest: test_truth
|
|
764
|
+
-------------------------
|
|
765
|
+
---------------------------------------------------------------------
|
|
766
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
767
|
+
---------------------------------------------------------------------
|
|
768
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
769
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (5.3ms)
|
|
770
|
+
Completed 200 OK in 137ms (Views: 137.1ms)
|
|
771
|
+
-----------------------------------------------------------
|
|
772
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
773
|
+
-----------------------------------------------------------
|
|
774
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
775
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.4ms)
|
|
776
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
|
777
|
+
-------------------------------------------------
|
|
778
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
779
|
+
-------------------------------------------------
|
|
780
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
781
|
+
Completed 500 Internal Server Error in 1ms
|
|
782
|
+
------------------------------------------------
|
|
783
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
784
|
+
------------------------------------------------
|
|
785
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
786
|
+
Parameters: {"id"=>"1"}
|
|
787
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
788
|
+
Completed 200 OK in 6ms (Views: 5.5ms)
|
|
789
|
+
-------------------------
|
|
790
|
+
TechRadarTest: test_truth
|
|
791
|
+
-------------------------
|
|
792
|
+
-------------------------------------------------
|
|
793
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
794
|
+
-------------------------------------------------
|
|
795
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
796
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (1.1ms)
|
|
797
|
+
Completed 200 OK in 139ms (Views: 131.0ms)
|
|
798
|
+
------------------------------------------------
|
|
799
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
800
|
+
------------------------------------------------
|
|
801
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
802
|
+
Parameters: {"id"=>"1"}
|
|
803
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
804
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
805
|
+
-----------------------------------------------------------
|
|
806
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
807
|
+
-----------------------------------------------------------
|
|
808
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
809
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.3ms)
|
|
810
|
+
Completed 200 OK in 5ms (Views: 4.7ms)
|
|
811
|
+
---------------------------------------------------------------------
|
|
812
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
813
|
+
---------------------------------------------------------------------
|
|
814
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
815
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.4ms)
|
|
816
|
+
Completed 200 OK in 5ms (Views: 4.7ms)
|
|
817
|
+
-------------------------------------------------
|
|
818
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
819
|
+
-------------------------------------------------
|
|
820
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
821
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (1.1ms)
|
|
822
|
+
Completed 200 OK in 147ms (Views: 135.4ms)
|
|
823
|
+
------------------------------------------------
|
|
824
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
825
|
+
------------------------------------------------
|
|
826
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
827
|
+
Parameters: {"id"=>"1"}
|
|
828
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
829
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
|
830
|
+
-----------------------------------------------------------
|
|
831
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
832
|
+
-----------------------------------------------------------
|
|
833
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
834
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
835
|
+
Completed 200 OK in 5ms (Views: 4.8ms)
|
|
836
|
+
---------------------------------------------------------------------
|
|
837
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
838
|
+
---------------------------------------------------------------------
|
|
839
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
840
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.5ms)
|
|
841
|
+
Completed 200 OK in 5ms (Views: 5.0ms)
|
|
842
|
+
-------------------------
|
|
843
|
+
TechRadarTest: test_truth
|
|
844
|
+
-------------------------
|
|
845
|
+
---------------------------------------------------------------------
|
|
846
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
847
|
+
---------------------------------------------------------------------
|
|
848
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
849
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (4.1ms)
|
|
850
|
+
Completed 200 OK in 133ms (Views: 133.4ms)
|
|
851
|
+
-----------------------------------------------------------
|
|
852
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
853
|
+
-----------------------------------------------------------
|
|
854
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
855
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
856
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
857
|
+
-------------------------------------------------
|
|
858
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
859
|
+
-------------------------------------------------
|
|
860
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
861
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
862
|
+
Completed 200 OK in 9ms (Views: 4.8ms)
|
|
863
|
+
------------------------------------------------
|
|
864
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
865
|
+
------------------------------------------------
|
|
866
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
867
|
+
Parameters: {"id"=>"1"}
|
|
868
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
869
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
870
|
+
-------------------------
|
|
871
|
+
TechRadarTest: test_truth
|
|
872
|
+
-------------------------
|
|
873
|
+
---------------------------------------------------------------------
|
|
874
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
875
|
+
---------------------------------------------------------------------
|
|
876
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
877
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (8.0ms)
|
|
878
|
+
Completed 200 OK in 141ms (Views: 140.7ms)
|
|
879
|
+
-----------------------------------------------------------
|
|
880
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
881
|
+
-----------------------------------------------------------
|
|
882
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
883
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
884
|
+
Completed 200 OK in 2ms (Views: 2.3ms)
|
|
885
|
+
-------------------------
|
|
886
|
+
TechRadarTest: test_truth
|
|
887
|
+
-------------------------
|
|
888
|
+
-------------------------------------------------
|
|
889
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
890
|
+
-------------------------------------------------
|
|
891
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
892
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.3ms)
|
|
893
|
+
Completed 200 OK in 8ms (Views: 4.7ms)
|
|
894
|
+
------------------------------------------------
|
|
895
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
896
|
+
------------------------------------------------
|
|
897
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
898
|
+
Parameters: {"id"=>"1"}
|
|
899
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
900
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
|
901
|
+
-------------------------
|
|
902
|
+
TechRadarTest: test_truth
|
|
903
|
+
-------------------------
|
|
904
|
+
-------------------------------------------------
|
|
905
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
906
|
+
-------------------------------------------------
|
|
907
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
908
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (1.0ms)
|
|
909
|
+
Completed 200 OK in 144ms (Views: 133.7ms)
|
|
910
|
+
------------------------------------------------
|
|
911
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
912
|
+
------------------------------------------------
|
|
913
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
914
|
+
Parameters: {"id"=>"1"}
|
|
915
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
916
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
|
917
|
+
---------------------------------------------------------------------
|
|
918
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
919
|
+
---------------------------------------------------------------------
|
|
920
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
921
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.4ms)
|
|
922
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
|
923
|
+
-----------------------------------------------------------
|
|
924
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
925
|
+
-----------------------------------------------------------
|
|
926
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
927
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
928
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
|
929
|
+
-----------------------------------------------------------
|
|
930
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
931
|
+
-----------------------------------------------------------
|
|
932
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
933
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (1.1ms)
|
|
934
|
+
Completed 200 OK in 143ms (Views: 142.4ms)
|
|
935
|
+
---------------------------------------------------------------------
|
|
936
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
937
|
+
---------------------------------------------------------------------
|
|
938
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
939
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.5ms)
|
|
940
|
+
Completed 200 OK in 5ms (Views: 4.9ms)
|
|
941
|
+
-------------------------
|
|
942
|
+
TechRadarTest: test_truth
|
|
943
|
+
-------------------------
|
|
944
|
+
-------------------------------------------------
|
|
945
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
946
|
+
-------------------------------------------------
|
|
947
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
948
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
949
|
+
Completed 200 OK in 8ms (Views: 5.2ms)
|
|
950
|
+
------------------------------------------------
|
|
951
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
952
|
+
------------------------------------------------
|
|
953
|
+
-------------------------
|
|
954
|
+
TechRadarTest: test_truth
|
|
955
|
+
-------------------------
|
|
956
|
+
---------------------------------------------------------------------
|
|
957
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
958
|
+
---------------------------------------------------------------------
|
|
959
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
960
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (4.0ms)
|
|
961
|
+
Completed 200 OK in 141ms (Views: 141.4ms)
|
|
962
|
+
-----------------------------------------------------------
|
|
963
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
964
|
+
-----------------------------------------------------------
|
|
965
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
966
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
967
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
968
|
+
-------------------------------------------------
|
|
969
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
970
|
+
-------------------------------------------------
|
|
971
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
972
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
973
|
+
Completed 200 OK in 8ms (Views: 5.1ms)
|
|
974
|
+
------------------------------------------------
|
|
975
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
976
|
+
------------------------------------------------
|
|
977
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
978
|
+
Parameters: {"id"=>"Resque"}
|
|
979
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
980
|
+
Completed 200 OK in 4ms (Views: 2.6ms)
|
|
981
|
+
-------------------------
|
|
982
|
+
TechRadarTest: test_truth
|
|
983
|
+
-------------------------
|
|
984
|
+
------------------------------------------------
|
|
985
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
986
|
+
------------------------------------------------
|
|
987
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
988
|
+
Parameters: {"id"=>"Resque"}
|
|
989
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (1.3ms)
|
|
990
|
+
Completed 200 OK in 168ms (Views: 162.4ms)
|
|
991
|
+
-------------------------------------------------
|
|
992
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
993
|
+
-------------------------------------------------
|
|
994
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
995
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.8ms)
|
|
996
|
+
Completed 200 OK in 6ms (Views: 5.0ms)
|
|
997
|
+
---------------------------------------------------------------------
|
|
998
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
999
|
+
---------------------------------------------------------------------
|
|
1000
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1001
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (3.2ms)
|
|
1002
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
|
1003
|
+
-----------------------------------------------------------
|
|
1004
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1005
|
+
-----------------------------------------------------------
|
|
1006
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1007
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1008
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
|
1009
|
+
---------------------------------------------
|
|
1010
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1011
|
+
---------------------------------------------
|
|
1012
|
+
---------------------------------------------------------------------
|
|
1013
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1014
|
+
---------------------------------------------------------------------
|
|
1015
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1016
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (6.5ms)
|
|
1017
|
+
Completed 200 OK in 150ms (Views: 149.9ms)
|
|
1018
|
+
-----------------------------------------------------------
|
|
1019
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1020
|
+
-----------------------------------------------------------
|
|
1021
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1022
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1023
|
+
Completed 200 OK in 3ms (Views: 3.1ms)
|
|
1024
|
+
-------------------------
|
|
1025
|
+
TechRadarTest: test_truth
|
|
1026
|
+
-------------------------
|
|
1027
|
+
-------------------------------------------------
|
|
1028
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1029
|
+
-------------------------------------------------
|
|
1030
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1031
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1032
|
+
Completed 200 OK in 8ms (Views: 5.2ms)
|
|
1033
|
+
------------------------------------------------
|
|
1034
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1035
|
+
------------------------------------------------
|
|
1036
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1037
|
+
Parameters: {"id"=>"Resque"}
|
|
1038
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1039
|
+
Completed 200 OK in 4ms (Views: 2.4ms)
|
|
1040
|
+
---------------------------------------------
|
|
1041
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1042
|
+
---------------------------------------------
|
|
1043
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1044
|
+
Parameters: {"id"=>"Tools"}
|
|
1045
|
+
Completed 500 Internal Server Error in 7ms
|
|
1046
|
+
---------------------------------------------------------------------
|
|
1047
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1048
|
+
---------------------------------------------------------------------
|
|
1049
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1050
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (4.0ms)
|
|
1051
|
+
Completed 200 OK in 164ms (Views: 163.8ms)
|
|
1052
|
+
-----------------------------------------------------------
|
|
1053
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1054
|
+
-----------------------------------------------------------
|
|
1055
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1056
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1057
|
+
Completed 200 OK in 4ms (Views: 3.6ms)
|
|
1058
|
+
-------------------------
|
|
1059
|
+
TechRadarTest: test_truth
|
|
1060
|
+
-------------------------
|
|
1061
|
+
-------------------------------------------------
|
|
1062
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1063
|
+
-------------------------------------------------
|
|
1064
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1065
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.9ms)
|
|
1066
|
+
Completed 200 OK in 11ms (Views: 7.6ms)
|
|
1067
|
+
------------------------------------------------
|
|
1068
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1069
|
+
------------------------------------------------
|
|
1070
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1071
|
+
Parameters: {"id"=>"Resque"}
|
|
1072
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1073
|
+
Completed 200 OK in 6ms (Views: 3.1ms)
|
|
1074
|
+
---------------------------------------------
|
|
1075
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1076
|
+
---------------------------------------------
|
|
1077
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1078
|
+
Parameters: {"id"=>"Tools"}
|
|
1079
|
+
Completed 500 Internal Server Error in 0ms
|
|
1080
|
+
---------------------------------------------------------------------
|
|
1081
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1082
|
+
---------------------------------------------------------------------
|
|
1083
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1084
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (5.7ms)
|
|
1085
|
+
Completed 200 OK in 143ms (Views: 143.4ms)
|
|
1086
|
+
-----------------------------------------------------------
|
|
1087
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1088
|
+
-----------------------------------------------------------
|
|
1089
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1090
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1091
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
1092
|
+
-------------------------------------------------
|
|
1093
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1094
|
+
-------------------------------------------------
|
|
1095
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1096
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1097
|
+
Completed 200 OK in 8ms (Views: 4.8ms)
|
|
1098
|
+
------------------------------------------------
|
|
1099
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1100
|
+
------------------------------------------------
|
|
1101
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1102
|
+
Parameters: {"id"=>"Resque"}
|
|
1103
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1104
|
+
Completed 200 OK in 4ms (Views: 2.4ms)
|
|
1105
|
+
---------------------------------------------
|
|
1106
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1107
|
+
---------------------------------------------
|
|
1108
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1109
|
+
Parameters: {"id"=>"Tools"}
|
|
1110
|
+
Completed 500 Internal Server Error in 2ms
|
|
1111
|
+
-------------------------
|
|
1112
|
+
TechRadarTest: test_truth
|
|
1113
|
+
-------------------------
|
|
1114
|
+
-----------------------------------------------------------
|
|
1115
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1116
|
+
-----------------------------------------------------------
|
|
1117
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1118
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (1.0ms)
|
|
1119
|
+
Completed 200 OK in 143ms (Views: 143.0ms)
|
|
1120
|
+
---------------------------------------------------------------------
|
|
1121
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1122
|
+
---------------------------------------------------------------------
|
|
1123
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1124
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.3ms)
|
|
1125
|
+
Completed 200 OK in 5ms (Views: 4.6ms)
|
|
1126
|
+
---------------------------------------------
|
|
1127
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1128
|
+
---------------------------------------------
|
|
1129
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1130
|
+
Parameters: {"id"=>"Tools"}
|
|
1131
|
+
Completed 500 Internal Server Error in 4ms
|
|
1132
|
+
-------------------------
|
|
1133
|
+
TechRadarTest: test_truth
|
|
1134
|
+
-------------------------
|
|
1135
|
+
------------------------------------------------
|
|
1136
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1137
|
+
------------------------------------------------
|
|
1138
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1139
|
+
Parameters: {"id"=>"Resque"}
|
|
1140
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1141
|
+
Completed 200 OK in 8ms (Views: 6.5ms)
|
|
1142
|
+
-------------------------------------------------
|
|
1143
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1144
|
+
-------------------------------------------------
|
|
1145
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1146
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.5ms)
|
|
1147
|
+
Completed 200 OK in 5ms (Views: 2.9ms)
|
|
1148
|
+
------------------------------------------------
|
|
1149
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1150
|
+
------------------------------------------------
|
|
1151
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1152
|
+
Parameters: {"id"=>"Resque"}
|
|
1153
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (3.0ms)
|
|
1154
|
+
Completed 200 OK in 148ms (Views: 137.3ms)
|
|
1155
|
+
-------------------------------------------------
|
|
1156
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1157
|
+
-------------------------------------------------
|
|
1158
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1159
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1160
|
+
Completed 200 OK in 4ms (Views: 2.6ms)
|
|
1161
|
+
-------------------------
|
|
1162
|
+
TechRadarTest: test_truth
|
|
1163
|
+
-------------------------
|
|
1164
|
+
---------------------------------------------
|
|
1165
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1166
|
+
---------------------------------------------
|
|
1167
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1168
|
+
Parameters: {"id"=>"Tools"}
|
|
1169
|
+
Completed 500 Internal Server Error in 1ms
|
|
1170
|
+
---------------------------------------------------------------------
|
|
1171
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1172
|
+
---------------------------------------------------------------------
|
|
1173
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1174
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.3ms)
|
|
1175
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
|
1176
|
+
-----------------------------------------------------------
|
|
1177
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1178
|
+
-----------------------------------------------------------
|
|
1179
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1180
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1181
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
1182
|
+
---------------------------------------------------------------------
|
|
1183
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1184
|
+
---------------------------------------------------------------------
|
|
1185
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1186
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (3.9ms)
|
|
1187
|
+
Completed 200 OK in 144ms (Views: 143.7ms)
|
|
1188
|
+
-----------------------------------------------------------
|
|
1189
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1190
|
+
-----------------------------------------------------------
|
|
1191
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1192
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1193
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
|
1194
|
+
-------------------------
|
|
1195
|
+
TechRadarTest: test_truth
|
|
1196
|
+
-------------------------
|
|
1197
|
+
---------------------------------------------
|
|
1198
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1199
|
+
---------------------------------------------
|
|
1200
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1201
|
+
Parameters: {"id"=>"Tools"}
|
|
1202
|
+
Completed 500 Internal Server Error in 1ms
|
|
1203
|
+
-------------------------------------------------
|
|
1204
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1205
|
+
-------------------------------------------------
|
|
1206
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1207
|
+
Completed 500 Internal Server Error in 2ms
|
|
1208
|
+
------------------------------------------------
|
|
1209
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1210
|
+
------------------------------------------------
|
|
1211
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1212
|
+
Parameters: {"id"=>"Resque"}
|
|
1213
|
+
Completed 500 Internal Server Error in 0ms
|
|
1214
|
+
-----------------------------------------------------------
|
|
1215
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1216
|
+
-----------------------------------------------------------
|
|
1217
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1218
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (1.4ms)
|
|
1219
|
+
Completed 200 OK in 142ms (Views: 141.9ms)
|
|
1220
|
+
---------------------------------------------------------------------
|
|
1221
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1222
|
+
---------------------------------------------------------------------
|
|
1223
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1224
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.4ms)
|
|
1225
|
+
Completed 200 OK in 5ms (Views: 4.6ms)
|
|
1226
|
+
-------------------------------------------------
|
|
1227
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1228
|
+
-------------------------------------------------
|
|
1229
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1230
|
+
Completed 500 Internal Server Error in 1ms
|
|
1231
|
+
------------------------------------------------
|
|
1232
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1233
|
+
------------------------------------------------
|
|
1234
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1235
|
+
Parameters: {"id"=>"Resque"}
|
|
1236
|
+
Completed 500 Internal Server Error in 0ms
|
|
1237
|
+
-------------------------
|
|
1238
|
+
TechRadarTest: test_truth
|
|
1239
|
+
-------------------------
|
|
1240
|
+
---------------------------------------------
|
|
1241
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1242
|
+
---------------------------------------------
|
|
1243
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1244
|
+
Parameters: {"id"=>"Tools"}
|
|
1245
|
+
Completed 500 Internal Server Error in 0ms
|
|
1246
|
+
-------------------------------------------------
|
|
1247
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1248
|
+
-------------------------------------------------
|
|
1249
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1250
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (3.1ms)
|
|
1251
|
+
Completed 200 OK in 141ms (Views: 132.1ms)
|
|
1252
|
+
------------------------------------------------
|
|
1253
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1254
|
+
------------------------------------------------
|
|
1255
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1256
|
+
Parameters: {"id"=>"Resque"}
|
|
1257
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.5ms)
|
|
1258
|
+
Completed 200 OK in 5ms (Views: 3.7ms)
|
|
1259
|
+
---------------------------------------------------------------------
|
|
1260
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1261
|
+
---------------------------------------------------------------------
|
|
1262
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1263
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.5ms)
|
|
1264
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
|
1265
|
+
-----------------------------------------------------------
|
|
1266
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1267
|
+
-----------------------------------------------------------
|
|
1268
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1269
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1270
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
|
1271
|
+
---------------------------------------------
|
|
1272
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1273
|
+
---------------------------------------------
|
|
1274
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1275
|
+
Parameters: {"id"=>"Tools"}
|
|
1276
|
+
Completed 500 Internal Server Error in 2ms
|
|
1277
|
+
-------------------------
|
|
1278
|
+
TechRadarTest: test_truth
|
|
1279
|
+
-------------------------
|
|
1280
|
+
---------------------------------------------
|
|
1281
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1282
|
+
---------------------------------------------
|
|
1283
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1284
|
+
Parameters: {"id"=>"Tools"}
|
|
1285
|
+
Completed 500 Internal Server Error in 12ms
|
|
1286
|
+
---------------------------------------------------------------------
|
|
1287
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1288
|
+
---------------------------------------------------------------------
|
|
1289
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1290
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (3.4ms)
|
|
1291
|
+
Completed 200 OK in 134ms (Views: 133.9ms)
|
|
1292
|
+
-----------------------------------------------------------
|
|
1293
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1294
|
+
-----------------------------------------------------------
|
|
1295
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1296
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1297
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
|
1298
|
+
-------------------------
|
|
1299
|
+
TechRadarTest: test_truth
|
|
1300
|
+
-------------------------
|
|
1301
|
+
-------------------------------------------------
|
|
1302
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1303
|
+
-------------------------------------------------
|
|
1304
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1305
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1306
|
+
Completed 200 OK in 6ms (Views: 4.8ms)
|
|
1307
|
+
------------------------------------------------
|
|
1308
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1309
|
+
------------------------------------------------
|
|
1310
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1311
|
+
Parameters: {"id"=>"Resque"}
|
|
1312
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1313
|
+
Completed 200 OK in 4ms (Views: 2.4ms)
|
|
1314
|
+
-----------------------------------------------------------
|
|
1315
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1316
|
+
-----------------------------------------------------------
|
|
1317
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1318
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.9ms)
|
|
1319
|
+
Completed 200 OK in 142ms (Views: 142.0ms)
|
|
1320
|
+
---------------------------------------------------------------------
|
|
1321
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1322
|
+
---------------------------------------------------------------------
|
|
1323
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1324
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.4ms)
|
|
1325
|
+
Completed 200 OK in 5ms (Views: 4.7ms)
|
|
1326
|
+
-------------------------------------------------
|
|
1327
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1328
|
+
-------------------------------------------------
|
|
1329
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1330
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1331
|
+
Completed 200 OK in 8ms (Views: 4.9ms)
|
|
1332
|
+
------------------------------------------------
|
|
1333
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1334
|
+
------------------------------------------------
|
|
1335
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1336
|
+
Parameters: {"id"=>"Resque"}
|
|
1337
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1338
|
+
Completed 200 OK in 4ms (Views: 2.4ms)
|
|
1339
|
+
-------------------------
|
|
1340
|
+
TechRadarTest: test_truth
|
|
1341
|
+
-------------------------
|
|
1342
|
+
---------------------------------------------
|
|
1343
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1344
|
+
---------------------------------------------
|
|
1345
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1346
|
+
Parameters: {"id"=>"Tools"}
|
|
1347
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (20.1ms)
|
|
1348
|
+
Completed 500 Internal Server Error in 31ms
|
|
1349
|
+
---------------------------------------------------------------------
|
|
1350
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1351
|
+
---------------------------------------------------------------------
|
|
1352
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1353
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (4.0ms)
|
|
1354
|
+
Completed 200 OK in 147ms (Views: 146.8ms)
|
|
1355
|
+
-----------------------------------------------------------
|
|
1356
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1357
|
+
-----------------------------------------------------------
|
|
1358
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1359
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1360
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
1361
|
+
---------------------------------------------
|
|
1362
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1363
|
+
---------------------------------------------
|
|
1364
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1365
|
+
Parameters: {"id"=>"Tools"}
|
|
1366
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (20.1ms)
|
|
1367
|
+
Completed 500 Internal Server Error in 28ms
|
|
1368
|
+
-------------------------
|
|
1369
|
+
TechRadarTest: test_truth
|
|
1370
|
+
-------------------------
|
|
1371
|
+
-------------------------------------------------
|
|
1372
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1373
|
+
-------------------------------------------------
|
|
1374
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1375
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1376
|
+
Completed 200 OK in 8ms (Views: 6.1ms)
|
|
1377
|
+
------------------------------------------------
|
|
1378
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1379
|
+
------------------------------------------------
|
|
1380
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1381
|
+
Parameters: {"id"=>"Resque"}
|
|
1382
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1383
|
+
Completed 200 OK in 4ms (Views: 2.6ms)
|
|
1384
|
+
---------------------------------------------
|
|
1385
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1386
|
+
---------------------------------------------
|
|
1387
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1388
|
+
Parameters: {"id"=>"Tools"}
|
|
1389
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (4.0ms)
|
|
1390
|
+
Completed 500 Internal Server Error in 26ms
|
|
1391
|
+
-------------------------
|
|
1392
|
+
TechRadarTest: test_truth
|
|
1393
|
+
-------------------------
|
|
1394
|
+
---------------------------------------------------------------------
|
|
1395
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1396
|
+
---------------------------------------------------------------------
|
|
1397
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1398
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.9ms)
|
|
1399
|
+
Completed 200 OK in 125ms (Views: 125.0ms)
|
|
1400
|
+
-----------------------------------------------------------
|
|
1401
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1402
|
+
-----------------------------------------------------------
|
|
1403
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1404
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1405
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
1406
|
+
-------------------------------------------------
|
|
1407
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1408
|
+
-------------------------------------------------
|
|
1409
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1410
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1411
|
+
Completed 200 OK in 7ms (Views: 5.4ms)
|
|
1412
|
+
------------------------------------------------
|
|
1413
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1414
|
+
------------------------------------------------
|
|
1415
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1416
|
+
Parameters: {"id"=>"Resque"}
|
|
1417
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1418
|
+
Completed 200 OK in 4ms (Views: 2.5ms)
|
|
1419
|
+
---------------------------------------------------------------------
|
|
1420
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1421
|
+
---------------------------------------------------------------------
|
|
1422
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1423
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (4.3ms)
|
|
1424
|
+
Completed 200 OK in 148ms (Views: 148.4ms)
|
|
1425
|
+
-----------------------------------------------------------
|
|
1426
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1427
|
+
-----------------------------------------------------------
|
|
1428
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1429
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1430
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
1431
|
+
-------------------------------------------------
|
|
1432
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1433
|
+
-------------------------------------------------
|
|
1434
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1435
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1436
|
+
Completed 200 OK in 8ms (Views: 5.2ms)
|
|
1437
|
+
------------------------------------------------
|
|
1438
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1439
|
+
------------------------------------------------
|
|
1440
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1441
|
+
Parameters: {"id"=>"Resque"}
|
|
1442
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1443
|
+
Completed 200 OK in 4ms (Views: 2.5ms)
|
|
1444
|
+
---------------------------------------------
|
|
1445
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1446
|
+
---------------------------------------------
|
|
1447
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1448
|
+
Parameters: {"id"=>"Tools"}
|
|
1449
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (5.1ms)
|
|
1450
|
+
Completed 500 Internal Server Error in 12ms
|
|
1451
|
+
-------------------------
|
|
1452
|
+
TechRadarTest: test_truth
|
|
1453
|
+
-------------------------
|
|
1454
|
+
------------------------------------------------
|
|
1455
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1456
|
+
------------------------------------------------
|
|
1457
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1458
|
+
Parameters: {"id"=>"Resque"}
|
|
1459
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (2.6ms)
|
|
1460
|
+
Completed 200 OK in 141ms (Views: 135.4ms)
|
|
1461
|
+
-------------------------------------------------
|
|
1462
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1463
|
+
-------------------------------------------------
|
|
1464
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1465
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1466
|
+
Completed 200 OK in 4ms (Views: 2.6ms)
|
|
1467
|
+
---------------------------------------------------------------------
|
|
1468
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1469
|
+
---------------------------------------------------------------------
|
|
1470
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1471
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.3ms)
|
|
1472
|
+
Completed 200 OK in 7ms (Views: 7.1ms)
|
|
1473
|
+
-----------------------------------------------------------
|
|
1474
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1475
|
+
-----------------------------------------------------------
|
|
1476
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1477
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1478
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
1479
|
+
---------------------------------------------
|
|
1480
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1481
|
+
---------------------------------------------
|
|
1482
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1483
|
+
Parameters: {"id"=>"Tools"}
|
|
1484
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.5ms)
|
|
1485
|
+
Completed 200 OK in 8ms (Views: 5.9ms)
|
|
1486
|
+
-------------------------
|
|
1487
|
+
TechRadarTest: test_truth
|
|
1488
|
+
-------------------------
|
|
1489
|
+
-------------------------------------------------
|
|
1490
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1491
|
+
-------------------------------------------------
|
|
1492
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1493
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (2.5ms)
|
|
1494
|
+
Completed 200 OK in 147ms (Views: 136.0ms)
|
|
1495
|
+
------------------------------------------------
|
|
1496
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1497
|
+
------------------------------------------------
|
|
1498
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1499
|
+
Parameters: {"id"=>"Resque"}
|
|
1500
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1501
|
+
Completed 200 OK in 4ms (Views: 2.5ms)
|
|
1502
|
+
-------------------------
|
|
1503
|
+
TechRadarTest: test_truth
|
|
1504
|
+
-------------------------
|
|
1505
|
+
---------------------------------------------
|
|
1506
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1507
|
+
---------------------------------------------
|
|
1508
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1509
|
+
Parameters: {"id"=>"Tools"}
|
|
1510
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1511
|
+
Completed 200 OK in 7ms (Views: 5.1ms)
|
|
1512
|
+
---------------------------------------------------------------------
|
|
1513
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1514
|
+
---------------------------------------------------------------------
|
|
1515
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1516
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.7ms)
|
|
1517
|
+
Completed 200 OK in 10ms (Views: 9.7ms)
|
|
1518
|
+
-----------------------------------------------------------
|
|
1519
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1520
|
+
-----------------------------------------------------------
|
|
1521
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1522
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.5ms)
|
|
1523
|
+
Completed 200 OK in 5ms (Views: 4.8ms)
|
|
1524
|
+
-------------------------------------------------
|
|
1525
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1526
|
+
-------------------------------------------------
|
|
1527
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1528
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (1.0ms)
|
|
1529
|
+
Completed 200 OK in 150ms (Views: 139.8ms)
|
|
1530
|
+
------------------------------------------------
|
|
1531
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1532
|
+
------------------------------------------------
|
|
1533
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1534
|
+
Parameters: {"id"=>"Resque"}
|
|
1535
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1536
|
+
Completed 200 OK in 4ms (Views: 2.5ms)
|
|
1537
|
+
---------------------------------------------
|
|
1538
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1539
|
+
---------------------------------------------
|
|
1540
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1541
|
+
Parameters: {"id"=>"Tools"}
|
|
1542
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1543
|
+
Completed 200 OK in 7ms (Views: 4.9ms)
|
|
1544
|
+
-------------------------
|
|
1545
|
+
TechRadarTest: test_truth
|
|
1546
|
+
-------------------------
|
|
1547
|
+
-----------------------------------------------------------
|
|
1548
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1549
|
+
-----------------------------------------------------------
|
|
1550
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1551
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1552
|
+
Completed 200 OK in 4ms (Views: 4.3ms)
|
|
1553
|
+
---------------------------------------------------------------------
|
|
1554
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1555
|
+
---------------------------------------------------------------------
|
|
1556
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1557
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.7ms)
|
|
1558
|
+
Completed 200 OK in 5ms (Views: 5.4ms)
|
|
1559
|
+
-------------------------
|
|
1560
|
+
TechRadarTest: test_truth
|
|
1561
|
+
-------------------------
|
|
1562
|
+
-------------------------------------------------
|
|
1563
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1564
|
+
-------------------------------------------------
|
|
1565
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1566
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (1.0ms)
|
|
1567
|
+
Completed 200 OK in 155ms (Views: 142.7ms)
|
|
1568
|
+
------------------------------------------------
|
|
1569
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1570
|
+
------------------------------------------------
|
|
1571
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1572
|
+
Parameters: {"id"=>"Resque"}
|
|
1573
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1574
|
+
Completed 200 OK in 4ms (Views: 2.6ms)
|
|
1575
|
+
---------------------------------------------
|
|
1576
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1577
|
+
---------------------------------------------
|
|
1578
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1579
|
+
Parameters: {"id"=>"Tools"}
|
|
1580
|
+
Completed 500 Internal Server Error in 0ms
|
|
1581
|
+
---------------------------------------------------------------------
|
|
1582
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1583
|
+
---------------------------------------------------------------------
|
|
1584
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1585
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.5ms)
|
|
1586
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
|
1587
|
+
-----------------------------------------------------------
|
|
1588
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1589
|
+
-----------------------------------------------------------
|
|
1590
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1591
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1592
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
1593
|
+
---------------------------------------------------------------------
|
|
1594
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1595
|
+
---------------------------------------------------------------------
|
|
1596
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1597
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (6.1ms)
|
|
1598
|
+
Completed 200 OK in 139ms (Views: 138.5ms)
|
|
1599
|
+
-----------------------------------------------------------
|
|
1600
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1601
|
+
-----------------------------------------------------------
|
|
1602
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1603
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1604
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
|
1605
|
+
---------------------------------------------
|
|
1606
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1607
|
+
---------------------------------------------
|
|
1608
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1609
|
+
Parameters: {"id"=>"Tools"}
|
|
1610
|
+
Completed 500 Internal Server Error in 1ms
|
|
1611
|
+
------------------------------------------------
|
|
1612
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1613
|
+
------------------------------------------------
|
|
1614
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1615
|
+
Parameters: {"id"=>"Resque"}
|
|
1616
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1617
|
+
Completed 200 OK in 8ms (Views: 4.9ms)
|
|
1618
|
+
-------------------------------------------------
|
|
1619
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1620
|
+
-------------------------------------------------
|
|
1621
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1622
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1623
|
+
Completed 200 OK in 4ms (Views: 2.7ms)
|
|
1624
|
+
-------------------------
|
|
1625
|
+
TechRadarTest: test_truth
|
|
1626
|
+
-------------------------
|
|
1627
|
+
------------------------------------------------
|
|
1628
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1629
|
+
------------------------------------------------
|
|
1630
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1631
|
+
Parameters: {"id"=>"Resque"}
|
|
1632
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (1.0ms)
|
|
1633
|
+
Completed 200 OK in 147ms (Views: 138.1ms)
|
|
1634
|
+
-------------------------------------------------
|
|
1635
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1636
|
+
-------------------------------------------------
|
|
1637
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1638
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1639
|
+
Completed 200 OK in 4ms (Views: 2.7ms)
|
|
1640
|
+
-------------------------
|
|
1641
|
+
TechRadarTest: test_truth
|
|
1642
|
+
-------------------------
|
|
1643
|
+
---------------------------------------------------------------------
|
|
1644
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1645
|
+
---------------------------------------------------------------------
|
|
1646
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1647
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.4ms)
|
|
1648
|
+
Completed 200 OK in 7ms (Views: 7.3ms)
|
|
1649
|
+
-----------------------------------------------------------
|
|
1650
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1651
|
+
-----------------------------------------------------------
|
|
1652
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1653
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1654
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
|
1655
|
+
---------------------------------------------
|
|
1656
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1657
|
+
---------------------------------------------
|
|
1658
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1659
|
+
Parameters: {"id"=>"Tools"}
|
|
1660
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.5ms)
|
|
1661
|
+
Completed 200 OK in 8ms (Views: 5.1ms)
|
|
1662
|
+
-------------------------
|
|
1663
|
+
TechRadarTest: test_truth
|
|
1664
|
+
-------------------------
|
|
1665
|
+
---------------------------------------------
|
|
1666
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1667
|
+
---------------------------------------------
|
|
1668
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1669
|
+
Parameters: {"id"=>"Tools"}
|
|
1670
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (1.2ms)
|
|
1671
|
+
Completed 200 OK in 142ms (Views: 132.0ms)
|
|
1672
|
+
------------------------------------------------
|
|
1673
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1674
|
+
------------------------------------------------
|
|
1675
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1676
|
+
Parameters: {"id"=>"Resque"}
|
|
1677
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1678
|
+
Completed 200 OK in 6ms (Views: 4.9ms)
|
|
1679
|
+
-------------------------------------------------
|
|
1680
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1681
|
+
-------------------------------------------------
|
|
1682
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1683
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1684
|
+
Completed 200 OK in 4ms (Views: 2.5ms)
|
|
1685
|
+
---------------------------------------------------------------------
|
|
1686
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1687
|
+
---------------------------------------------------------------------
|
|
1688
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1689
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.7ms)
|
|
1690
|
+
Completed 200 OK in 7ms (Views: 7.1ms)
|
|
1691
|
+
-----------------------------------------------------------
|
|
1692
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1693
|
+
-----------------------------------------------------------
|
|
1694
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1695
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1696
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
1697
|
+
-------------------------
|
|
1698
|
+
TechRadarTest: test_truth
|
|
1699
|
+
-------------------------
|
|
1700
|
+
---------------------------------------------------------------------
|
|
1701
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1702
|
+
---------------------------------------------------------------------
|
|
1703
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1704
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (5.8ms)
|
|
1705
|
+
Completed 200 OK in 141ms (Views: 141.3ms)
|
|
1706
|
+
-----------------------------------------------------------
|
|
1707
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1708
|
+
-----------------------------------------------------------
|
|
1709
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1710
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1711
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
1712
|
+
---------------------------------------------
|
|
1713
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1714
|
+
---------------------------------------------
|
|
1715
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1716
|
+
Parameters: {"id"=>"Tools"}
|
|
1717
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1718
|
+
Completed 200 OK in 9ms (Views: 5.5ms)
|
|
1719
|
+
-------------------------------------------------
|
|
1720
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1721
|
+
-------------------------------------------------
|
|
1722
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1723
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1724
|
+
Completed 200 OK in 6ms (Views: 4.7ms)
|
|
1725
|
+
------------------------------------------------
|
|
1726
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1727
|
+
------------------------------------------------
|
|
1728
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1729
|
+
Parameters: {"id"=>"Resque"}
|
|
1730
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1731
|
+
Completed 200 OK in 5ms (Views: 2.7ms)
|
|
1732
|
+
---------------------------------------------------------------------
|
|
1733
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1734
|
+
---------------------------------------------------------------------
|
|
1735
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1736
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (5.9ms)
|
|
1737
|
+
Completed 200 OK in 146ms (Views: 145.6ms)
|
|
1738
|
+
-----------------------------------------------------------
|
|
1739
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1740
|
+
-----------------------------------------------------------
|
|
1741
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1742
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1743
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
1744
|
+
-------------------------
|
|
1745
|
+
TechRadarTest: test_truth
|
|
1746
|
+
-------------------------
|
|
1747
|
+
------------------------------
|
|
1748
|
+
TechRadar::RadarTest: test_foo
|
|
1749
|
+
------------------------------
|
|
1750
|
+
---------------------------------------------
|
|
1751
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1752
|
+
---------------------------------------------
|
|
1753
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1754
|
+
Parameters: {"id"=>"Tools"}
|
|
1755
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1756
|
+
Completed 200 OK in 9ms (Views: 5.1ms)
|
|
1757
|
+
-------------------------------------------------
|
|
1758
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1759
|
+
-------------------------------------------------
|
|
1760
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1761
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1762
|
+
Completed 200 OK in 6ms (Views: 4.7ms)
|
|
1763
|
+
------------------------------------------------
|
|
1764
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1765
|
+
------------------------------------------------
|
|
1766
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1767
|
+
Parameters: {"id"=>"Resque"}
|
|
1768
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1769
|
+
Completed 200 OK in 4ms (Views: 2.6ms)
|
|
1770
|
+
-------------------------------------
|
|
1771
|
+
TechRadar::RadarTest: test_quandrants
|
|
1772
|
+
-------------------------------------
|
|
1773
|
+
-------------------------------------------------
|
|
1774
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1775
|
+
-------------------------------------------------
|
|
1776
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1777
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (1.1ms)
|
|
1778
|
+
Completed 200 OK in 133ms (Views: 130.2ms)
|
|
1779
|
+
------------------------------------------------
|
|
1780
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1781
|
+
------------------------------------------------
|
|
1782
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1783
|
+
Parameters: {"id"=>"Resque"}
|
|
1784
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1785
|
+
Completed 200 OK in 4ms (Views: 2.5ms)
|
|
1786
|
+
---------------------------------------------------------------------
|
|
1787
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1788
|
+
---------------------------------------------------------------------
|
|
1789
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1790
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.4ms)
|
|
1791
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
|
1792
|
+
-----------------------------------------------------------
|
|
1793
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1794
|
+
-----------------------------------------------------------
|
|
1795
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1796
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1797
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
1798
|
+
-------------------------
|
|
1799
|
+
TechRadarTest: test_truth
|
|
1800
|
+
-------------------------
|
|
1801
|
+
---------------------------------------------
|
|
1802
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1803
|
+
---------------------------------------------
|
|
1804
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1805
|
+
Parameters: {"id"=>"Tools"}
|
|
1806
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.8ms)
|
|
1807
|
+
Completed 200 OK in 7ms (Views: 5.5ms)
|
|
1808
|
+
---------------------------------------------------------------------
|
|
1809
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1810
|
+
---------------------------------------------------------------------
|
|
1811
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1812
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (3.6ms)
|
|
1813
|
+
Completed 200 OK in 126ms (Views: 125.5ms)
|
|
1814
|
+
-----------------------------------------------------------
|
|
1815
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1816
|
+
-----------------------------------------------------------
|
|
1817
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1818
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1819
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
1820
|
+
-------------------------------------------------
|
|
1821
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1822
|
+
-------------------------------------------------
|
|
1823
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1824
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1825
|
+
Completed 200 OK in 8ms (Views: 5.0ms)
|
|
1826
|
+
------------------------------------------------
|
|
1827
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1828
|
+
------------------------------------------------
|
|
1829
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1830
|
+
Parameters: {"id"=>"Resque"}
|
|
1831
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1832
|
+
Completed 200 OK in 4ms (Views: 2.4ms)
|
|
1833
|
+
---------------------------------------------
|
|
1834
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1835
|
+
---------------------------------------------
|
|
1836
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1837
|
+
Parameters: {"id"=>"Tools"}
|
|
1838
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1839
|
+
Completed 200 OK in 7ms (Views: 5.4ms)
|
|
1840
|
+
-------------------------------------
|
|
1841
|
+
TechRadar::RadarTest: test_quandrants
|
|
1842
|
+
-------------------------------------
|
|
1843
|
+
-------------------------
|
|
1844
|
+
TechRadarTest: test_truth
|
|
1845
|
+
-------------------------
|
|
1846
|
+
---------------------------------------------------------------------
|
|
1847
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1848
|
+
---------------------------------------------------------------------
|
|
1849
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1850
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (3.9ms)
|
|
1851
|
+
Completed 200 OK in 145ms (Views: 145.4ms)
|
|
1852
|
+
-----------------------------------------------------------
|
|
1853
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1854
|
+
-----------------------------------------------------------
|
|
1855
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1856
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1857
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
1858
|
+
---------------------------------------------
|
|
1859
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1860
|
+
---------------------------------------------
|
|
1861
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1862
|
+
Parameters: {"id"=>"Tools"}
|
|
1863
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1864
|
+
Completed 200 OK in 8ms (Views: 5.1ms)
|
|
1865
|
+
-------------------------------------------------
|
|
1866
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1867
|
+
-------------------------------------------------
|
|
1868
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1869
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1870
|
+
Completed 200 OK in 6ms (Views: 4.9ms)
|
|
1871
|
+
------------------------------------------------
|
|
1872
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1873
|
+
------------------------------------------------
|
|
1874
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1875
|
+
Parameters: {"id"=>"Resque"}
|
|
1876
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.8ms)
|
|
1877
|
+
Completed 200 OK in 6ms (Views: 4.4ms)
|
|
1878
|
+
-------------------------
|
|
1879
|
+
TechRadarTest: test_truth
|
|
1880
|
+
-------------------------
|
|
1881
|
+
------------------------------------
|
|
1882
|
+
TechRadar::RadarTest: test_quadrants
|
|
1883
|
+
------------------------------------
|
|
1884
|
+
---------------------------------------------------------------------
|
|
1885
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1886
|
+
---------------------------------------------------------------------
|
|
1887
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1888
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (4.3ms)
|
|
1889
|
+
Completed 200 OK in 149ms (Views: 149.3ms)
|
|
1890
|
+
-----------------------------------------------------------
|
|
1891
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1892
|
+
-----------------------------------------------------------
|
|
1893
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1894
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1895
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
|
1896
|
+
-------------------------
|
|
1897
|
+
TechRadarTest: test_truth
|
|
1898
|
+
-------------------------
|
|
1899
|
+
---------------------------------------------
|
|
1900
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1901
|
+
---------------------------------------------
|
|
1902
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1903
|
+
Parameters: {"id"=>"Tools"}
|
|
1904
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.7ms)
|
|
1905
|
+
Completed 200 OK in 10ms (Views: 6.9ms)
|
|
1906
|
+
-------------------------------------------------
|
|
1907
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1908
|
+
-------------------------------------------------
|
|
1909
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1910
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1911
|
+
Completed 200 OK in 7ms (Views: 5.2ms)
|
|
1912
|
+
------------------------------------------------
|
|
1913
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1914
|
+
------------------------------------------------
|
|
1915
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1916
|
+
Parameters: {"id"=>"Resque"}
|
|
1917
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1918
|
+
Completed 200 OK in 5ms (Views: 3.2ms)
|
|
1919
|
+
---------------------------------------------------------------------
|
|
1920
|
+
TechRadar::RadarTest: test_pulls_info_from_the_app-provided_YAML_file
|
|
1921
|
+
---------------------------------------------------------------------
|
|
1922
|
+
---------------------------------------------
|
|
1923
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1924
|
+
---------------------------------------------
|
|
1925
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1926
|
+
Parameters: {"id"=>"Tools"}
|
|
1927
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (2.7ms)
|
|
1928
|
+
Completed 200 OK in 138ms (Views: 131.8ms)
|
|
1929
|
+
-------------------------
|
|
1930
|
+
TechRadarTest: test_truth
|
|
1931
|
+
-------------------------
|
|
1932
|
+
---------------------------------------------------------------------
|
|
1933
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1934
|
+
---------------------------------------------------------------------
|
|
1935
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1936
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.5ms)
|
|
1937
|
+
Completed 200 OK in 7ms (Views: 6.9ms)
|
|
1938
|
+
-----------------------------------------------------------
|
|
1939
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1940
|
+
-----------------------------------------------------------
|
|
1941
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1942
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
1943
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
1944
|
+
------------------------------------------------
|
|
1945
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1946
|
+
------------------------------------------------
|
|
1947
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1948
|
+
Parameters: {"id"=>"Resque"}
|
|
1949
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1950
|
+
Completed 200 OK in 6ms (Views: 4.8ms)
|
|
1951
|
+
-------------------------------------------------
|
|
1952
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1953
|
+
-------------------------------------------------
|
|
1954
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1955
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.6ms)
|
|
1956
|
+
Completed 200 OK in 5ms (Views: 3.1ms)
|
|
1957
|
+
---------------------------------------------------------------------
|
|
1958
|
+
TechRadar::RadarTest: test_pulls_info_from_the_app-provided_YAML_file
|
|
1959
|
+
---------------------------------------------------------------------
|
|
1960
|
+
---------------------------------------------
|
|
1961
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
1962
|
+
---------------------------------------------
|
|
1963
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
1964
|
+
Parameters: {"id"=>"Tools"}
|
|
1965
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (1.3ms)
|
|
1966
|
+
Completed 200 OK in 146ms (Views: 134.2ms)
|
|
1967
|
+
-------------------------
|
|
1968
|
+
TechRadarTest: test_truth
|
|
1969
|
+
-------------------------
|
|
1970
|
+
---------------------------------------------------------------------
|
|
1971
|
+
TechRadar::RadarTest: test_pulls_info_from_the_app-provided_YAML_file
|
|
1972
|
+
---------------------------------------------------------------------
|
|
1973
|
+
-------------------------------------------------
|
|
1974
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
1975
|
+
-------------------------------------------------
|
|
1976
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
1977
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1978
|
+
Completed 200 OK in 6ms (Views: 5.0ms)
|
|
1979
|
+
------------------------------------------------
|
|
1980
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
1981
|
+
------------------------------------------------
|
|
1982
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
1983
|
+
Parameters: {"id"=>"Resque"}
|
|
1984
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
1985
|
+
Completed 200 OK in 4ms (Views: 2.5ms)
|
|
1986
|
+
---------------------------------------------------------------------
|
|
1987
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
1988
|
+
---------------------------------------------------------------------
|
|
1989
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
1990
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (6.9ms)
|
|
1991
|
+
Completed 200 OK in 14ms (Views: 14.1ms)
|
|
1992
|
+
-----------------------------------------------------------
|
|
1993
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
1994
|
+
-----------------------------------------------------------
|
|
1995
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
1996
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.4ms)
|
|
1997
|
+
Completed 200 OK in 4ms (Views: 4.1ms)
|
|
1998
|
+
---------------------------------------------------------------------
|
|
1999
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2000
|
+
---------------------------------------------------------------------
|
|
2001
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2002
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (5.9ms)
|
|
2003
|
+
Completed 200 OK in 143ms (Views: 143.4ms)
|
|
2004
|
+
-----------------------------------------------------------
|
|
2005
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2006
|
+
-----------------------------------------------------------
|
|
2007
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2008
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
2009
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
2010
|
+
-------------------------
|
|
2011
|
+
TechRadarTest: test_truth
|
|
2012
|
+
-------------------------
|
|
2013
|
+
---------------------------------------------
|
|
2014
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2015
|
+
---------------------------------------------
|
|
2016
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2017
|
+
Parameters: {"id"=>"Tools"}
|
|
2018
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.4ms)
|
|
2019
|
+
Completed 200 OK in 9ms (Views: 4.9ms)
|
|
2020
|
+
-------------------------------------------------
|
|
2021
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2022
|
+
-------------------------------------------------
|
|
2023
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2024
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
2025
|
+
Completed 200 OK in 7ms (Views: 5.1ms)
|
|
2026
|
+
------------------------------------------------
|
|
2027
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2028
|
+
------------------------------------------------
|
|
2029
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2030
|
+
Parameters: {"id"=>"Resque"}
|
|
2031
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
2032
|
+
Completed 200 OK in 4ms (Views: 2.6ms)
|
|
2033
|
+
---------------------------------------
|
|
2034
|
+
TechRadar::RadarTest: test_technologies
|
|
2035
|
+
---------------------------------------
|
|
2036
|
+
------------------------------------
|
|
2037
|
+
TechRadar::RadarTest: test_quadrants
|
|
2038
|
+
------------------------------------
|
|
2039
|
+
-----------------------------------
|
|
2040
|
+
TechRadar::RadarTest: test_quadrant
|
|
2041
|
+
-----------------------------------
|
|
2042
|
+
---------------------------------------------------------------------
|
|
2043
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2044
|
+
---------------------------------------------------------------------
|
|
2045
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2046
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (6.6ms)
|
|
2047
|
+
Completed 200 OK in 143ms (Views: 142.7ms)
|
|
2048
|
+
-----------------------------------------------------------
|
|
2049
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2050
|
+
-----------------------------------------------------------
|
|
2051
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2052
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.3ms)
|
|
2053
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
2054
|
+
---------------------------------------
|
|
2055
|
+
TechRadar::RadarTest: test_technologies
|
|
2056
|
+
---------------------------------------
|
|
2057
|
+
-----------------------------------
|
|
2058
|
+
TechRadar::RadarTest: test_quadrant
|
|
2059
|
+
-----------------------------------
|
|
2060
|
+
------------------------------------
|
|
2061
|
+
TechRadar::RadarTest: test_quadrants
|
|
2062
|
+
------------------------------------
|
|
2063
|
+
-------------------------------------------------
|
|
2064
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2065
|
+
-------------------------------------------------
|
|
2066
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2067
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
2068
|
+
Completed 200 OK in 7ms (Views: 5.0ms)
|
|
2069
|
+
------------------------------------------------
|
|
2070
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2071
|
+
------------------------------------------------
|
|
2072
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2073
|
+
Parameters: {"id"=>"Resque"}
|
|
2074
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
2075
|
+
Completed 200 OK in 4ms (Views: 2.5ms)
|
|
2076
|
+
---------------------------------------------
|
|
2077
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2078
|
+
---------------------------------------------
|
|
2079
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2080
|
+
Parameters: {"id"=>"Tools"}
|
|
2081
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.4ms)
|
|
2082
|
+
Completed 200 OK in 7ms (Views: 5.0ms)
|
|
2083
|
+
-------------------------
|
|
2084
|
+
TechRadarTest: test_truth
|
|
2085
|
+
-------------------------
|
|
2086
|
+
---------------------------------------
|
|
2087
|
+
TechRadar::RadarTest: test_technologies
|
|
2088
|
+
---------------------------------------
|
|
2089
|
+
------------------------------------
|
|
2090
|
+
TechRadar::RadarTest: test_quadrants
|
|
2091
|
+
------------------------------------
|
|
2092
|
+
-----------------------------------
|
|
2093
|
+
TechRadar::RadarTest: test_quadrant
|
|
2094
|
+
-----------------------------------
|
|
2095
|
+
---------------------------------------------
|
|
2096
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2097
|
+
---------------------------------------------
|
|
2098
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2099
|
+
Parameters: {"id"=>"Tools"}
|
|
2100
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (1.1ms)
|
|
2101
|
+
Completed 200 OK in 123ms (Views: 121.0ms)
|
|
2102
|
+
-------------------------------------------------
|
|
2103
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2104
|
+
-------------------------------------------------
|
|
2105
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2106
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
2107
|
+
Completed 200 OK in 7ms (Views: 5.2ms)
|
|
2108
|
+
------------------------------------------------
|
|
2109
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2110
|
+
------------------------------------------------
|
|
2111
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2112
|
+
Parameters: {"id"=>"Resque"}
|
|
2113
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
2114
|
+
Completed 200 OK in 4ms (Views: 2.4ms)
|
|
2115
|
+
---------------------------------------------------------------------
|
|
2116
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2117
|
+
---------------------------------------------------------------------
|
|
2118
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2119
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.4ms)
|
|
2120
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
|
2121
|
+
-----------------------------------------------------------
|
|
2122
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2123
|
+
-----------------------------------------------------------
|
|
2124
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2125
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.3ms)
|
|
2126
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
|
2127
|
+
-------------------------
|
|
2128
|
+
TechRadarTest: test_truth
|
|
2129
|
+
-------------------------
|
|
2130
|
+
-------------------------
|
|
2131
|
+
TechRadarTest: test_truth
|
|
2132
|
+
-------------------------
|
|
2133
|
+
-------------------------------------------------
|
|
2134
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2135
|
+
-------------------------------------------------
|
|
2136
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2137
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (2.5ms)
|
|
2138
|
+
Completed 200 OK in 143ms (Views: 131.9ms)
|
|
2139
|
+
------------------------------------------------
|
|
2140
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2141
|
+
------------------------------------------------
|
|
2142
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2143
|
+
Parameters: {"id"=>"Resque"}
|
|
2144
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
2145
|
+
Completed 200 OK in 4ms (Views: 2.6ms)
|
|
2146
|
+
---------------------------------------------
|
|
2147
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2148
|
+
---------------------------------------------
|
|
2149
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2150
|
+
Parameters: {"id"=>"Tools"}
|
|
2151
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.4ms)
|
|
2152
|
+
Completed 200 OK in 7ms (Views: 4.8ms)
|
|
2153
|
+
---------------------------------------
|
|
2154
|
+
TechRadar::RadarTest: test_technologies
|
|
2155
|
+
---------------------------------------
|
|
2156
|
+
------------------------------------
|
|
2157
|
+
TechRadar::RadarTest: test_quadrants
|
|
2158
|
+
------------------------------------
|
|
2159
|
+
-----------------------------------
|
|
2160
|
+
TechRadar::RadarTest: test_quadrant
|
|
2161
|
+
-----------------------------------
|
|
2162
|
+
-------------------------------------
|
|
2163
|
+
TechRadar::RadarTest: test_technology
|
|
2164
|
+
-------------------------------------
|
|
2165
|
+
---------------------------------------------------------------------
|
|
2166
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2167
|
+
---------------------------------------------------------------------
|
|
2168
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2169
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.4ms)
|
|
2170
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
|
2171
|
+
-----------------------------------------------------------
|
|
2172
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2173
|
+
-----------------------------------------------------------
|
|
2174
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2175
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
2176
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
2177
|
+
-----------------------------------
|
|
2178
|
+
TechRadar::RadarTest: test_quadrant
|
|
2179
|
+
-----------------------------------
|
|
2180
|
+
-------------------------------------
|
|
2181
|
+
TechRadar::RadarTest: test_technology
|
|
2182
|
+
-------------------------------------
|
|
2183
|
+
------------------------------------
|
|
2184
|
+
TechRadar::RadarTest: test_quadrants
|
|
2185
|
+
------------------------------------
|
|
2186
|
+
---------------------------------------
|
|
2187
|
+
TechRadar::RadarTest: test_technologies
|
|
2188
|
+
---------------------------------------
|
|
2189
|
+
-------------------------------------------------
|
|
2190
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2191
|
+
-------------------------------------------------
|
|
2192
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2193
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (1.1ms)
|
|
2194
|
+
Completed 200 OK in 126ms (Views: 124.2ms)
|
|
2195
|
+
------------------------------------------------
|
|
2196
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2197
|
+
------------------------------------------------
|
|
2198
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2199
|
+
Parameters: {"id"=>"Resque"}
|
|
2200
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
2201
|
+
Completed 200 OK in 4ms (Views: 2.4ms)
|
|
2202
|
+
-------------------------
|
|
2203
|
+
TechRadarTest: test_truth
|
|
2204
|
+
-------------------------
|
|
2205
|
+
---------------------------------------------------------------------
|
|
2206
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2207
|
+
---------------------------------------------------------------------
|
|
2208
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2209
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.3ms)
|
|
2210
|
+
Completed 200 OK in 6ms (Views: 6.4ms)
|
|
2211
|
+
-----------------------------------------------------------
|
|
2212
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2213
|
+
-----------------------------------------------------------
|
|
2214
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2215
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
2216
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
2217
|
+
---------------------------------------------
|
|
2218
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2219
|
+
---------------------------------------------
|
|
2220
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2221
|
+
Parameters: {"id"=>"Tools"}
|
|
2222
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.4ms)
|
|
2223
|
+
Completed 200 OK in 6ms (Views: 4.7ms)
|
|
2224
|
+
---------------------------------------------------------------------
|
|
2225
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2226
|
+
---------------------------------------------------------------------
|
|
2227
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2228
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (5.7ms)
|
|
2229
|
+
Completed 200 OK in 165ms (Views: 164.8ms)
|
|
2230
|
+
-----------------------------------------------------------
|
|
2231
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2232
|
+
-----------------------------------------------------------
|
|
2233
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2234
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.3ms)
|
|
2235
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
2236
|
+
-------------------------
|
|
2237
|
+
TechRadarTest: test_truth
|
|
2238
|
+
-------------------------
|
|
2239
|
+
---------------------------------------------
|
|
2240
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2241
|
+
---------------------------------------------
|
|
2242
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2243
|
+
Parameters: {"id"=>"Tools"}
|
|
2244
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.4ms)
|
|
2245
|
+
Completed 200 OK in 8ms (Views: 5.1ms)
|
|
2246
|
+
------------------------------------
|
|
2247
|
+
TechRadar::RadarTest: test_quadrants
|
|
2248
|
+
------------------------------------
|
|
2249
|
+
---------------------------------------
|
|
2250
|
+
TechRadar::RadarTest: test_technologies
|
|
2251
|
+
---------------------------------------
|
|
2252
|
+
-----------------------------------
|
|
2253
|
+
TechRadar::RadarTest: test_quadrant
|
|
2254
|
+
-----------------------------------
|
|
2255
|
+
-------------------------------------
|
|
2256
|
+
TechRadar::RadarTest: test_technology
|
|
2257
|
+
-------------------------------------
|
|
2258
|
+
------------------------------------------------
|
|
2259
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2260
|
+
------------------------------------------------
|
|
2261
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2262
|
+
Parameters: {"id"=>"Resque"}
|
|
2263
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.4ms)
|
|
2264
|
+
Completed 200 OK in 9ms (Views: 5.6ms)
|
|
2265
|
+
-------------------------------------------------
|
|
2266
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2267
|
+
-------------------------------------------------
|
|
2268
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2269
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
2270
|
+
Completed 200 OK in 5ms (Views: 3.3ms)
|
|
2271
|
+
-------------------------------------------------
|
|
2272
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2273
|
+
-------------------------------------------------
|
|
2274
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2275
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (1.2ms)
|
|
2276
|
+
Completed 200 OK in 141ms (Views: 128.7ms)
|
|
2277
|
+
------------------------------------------------
|
|
2278
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2279
|
+
------------------------------------------------
|
|
2280
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2281
|
+
Parameters: {"id"=>"Resque"}
|
|
2282
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
2283
|
+
Completed 200 OK in 4ms (Views: 2.4ms)
|
|
2284
|
+
---------------------------------------------
|
|
2285
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2286
|
+
---------------------------------------------
|
|
2287
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2288
|
+
Parameters: {"id"=>"Tools"}
|
|
2289
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.4ms)
|
|
2290
|
+
Completed 200 OK in 7ms (Views: 5.0ms)
|
|
2291
|
+
---------------------------------------------------------------------
|
|
2292
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2293
|
+
---------------------------------------------------------------------
|
|
2294
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2295
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.3ms)
|
|
2296
|
+
Completed 200 OK in 6ms (Views: 6.4ms)
|
|
2297
|
+
-----------------------------------------------------------
|
|
2298
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2299
|
+
-----------------------------------------------------------
|
|
2300
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2301
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.3ms)
|
|
2302
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
|
2303
|
+
-----------------------------------
|
|
2304
|
+
TechRadar::RadarTest: test_quadrant
|
|
2305
|
+
-----------------------------------
|
|
2306
|
+
-------------------------------------
|
|
2307
|
+
TechRadar::RadarTest: test_technology
|
|
2308
|
+
-------------------------------------
|
|
2309
|
+
---------------------------------------
|
|
2310
|
+
TechRadar::RadarTest: test_technologies
|
|
2311
|
+
---------------------------------------
|
|
2312
|
+
------------------------------------
|
|
2313
|
+
TechRadar::RadarTest: test_quadrants
|
|
2314
|
+
------------------------------------
|
|
2315
|
+
-------------------------
|
|
2316
|
+
TechRadarTest: test_truth
|
|
2317
|
+
-------------------------
|
|
2318
|
+
------------------------------------------------
|
|
2319
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2320
|
+
------------------------------------------------
|
|
2321
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2322
|
+
Parameters: {"id"=>"Resque"}
|
|
2323
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.9ms)
|
|
2324
|
+
Completed 200 OK in 139ms (Views: 127.5ms)
|
|
2325
|
+
-------------------------------------------------
|
|
2326
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2327
|
+
-------------------------------------------------
|
|
2328
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2329
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
2330
|
+
Completed 200 OK in 4ms (Views: 2.6ms)
|
|
2331
|
+
---------------------------------------------------------------------
|
|
2332
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2333
|
+
---------------------------------------------------------------------
|
|
2334
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2335
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.3ms)
|
|
2336
|
+
Completed 200 OK in 7ms (Views: 6.6ms)
|
|
2337
|
+
-----------------------------------------------------------
|
|
2338
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2339
|
+
-----------------------------------------------------------
|
|
2340
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2341
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
2342
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
|
2343
|
+
-------------------------
|
|
2344
|
+
TechRadarTest: test_truth
|
|
2345
|
+
-------------------------
|
|
2346
|
+
-----------------------------------
|
|
2347
|
+
TechRadar::RadarTest: test_quadrant
|
|
2348
|
+
-----------------------------------
|
|
2349
|
+
-------------------------------------
|
|
2350
|
+
TechRadar::RadarTest: test_technology
|
|
2351
|
+
-------------------------------------
|
|
2352
|
+
---------------------------------------
|
|
2353
|
+
TechRadar::RadarTest: test_technologies
|
|
2354
|
+
---------------------------------------
|
|
2355
|
+
------------------------------------
|
|
2356
|
+
TechRadar::RadarTest: test_quadrants
|
|
2357
|
+
------------------------------------
|
|
2358
|
+
---------------------------------------------
|
|
2359
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2360
|
+
---------------------------------------------
|
|
2361
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2362
|
+
Parameters: {"id"=>"Tools"}
|
|
2363
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.8ms)
|
|
2364
|
+
Completed 200 OK in 8ms (Views: 6.4ms)
|
|
2365
|
+
-------------------------
|
|
2366
|
+
TechRadarTest: test_truth
|
|
2367
|
+
-------------------------
|
|
2368
|
+
-------------------------------------------------
|
|
2369
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2370
|
+
-------------------------------------------------
|
|
2371
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2372
|
+
Completed 500 Internal Server Error in 2ms
|
|
2373
|
+
------------------------------------------------
|
|
2374
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2375
|
+
------------------------------------------------
|
|
2376
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2377
|
+
Parameters: {"id"=>"Resque"}
|
|
2378
|
+
Completed 500 Internal Server Error in 2ms
|
|
2379
|
+
---------------------------------------
|
|
2380
|
+
TechRadar::RadarTest: test_technologies
|
|
2381
|
+
---------------------------------------
|
|
2382
|
+
------------------------------------
|
|
2383
|
+
TechRadar::RadarTest: test_quadrants
|
|
2384
|
+
------------------------------------
|
|
2385
|
+
-----------------------------------
|
|
2386
|
+
TechRadar::RadarTest: test_quadrant
|
|
2387
|
+
-----------------------------------
|
|
2388
|
+
-------------------------------------
|
|
2389
|
+
TechRadar::RadarTest: test_technology
|
|
2390
|
+
-------------------------------------
|
|
2391
|
+
---------------------------------------------
|
|
2392
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2393
|
+
---------------------------------------------
|
|
2394
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2395
|
+
Parameters: {"id"=>"Tools"}
|
|
2396
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (1.2ms)
|
|
2397
|
+
Completed 200 OK in 127ms (Views: 125.6ms)
|
|
2398
|
+
---------------------------------------------------------------------
|
|
2399
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2400
|
+
---------------------------------------------------------------------
|
|
2401
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2402
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (2.8ms)
|
|
2403
|
+
Completed 200 OK in 7ms (Views: 6.9ms)
|
|
2404
|
+
-----------------------------------------------------------
|
|
2405
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2406
|
+
-----------------------------------------------------------
|
|
2407
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2408
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
2409
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
|
2410
|
+
---------------------------------------------------------------------
|
|
2411
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2412
|
+
---------------------------------------------------------------------
|
|
2413
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2414
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (8.0ms)
|
|
2415
|
+
Completed 200 OK in 148ms (Views: 148.1ms)
|
|
2416
|
+
-----------------------------------------------------------
|
|
2417
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2418
|
+
-----------------------------------------------------------
|
|
2419
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2420
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
2421
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
2422
|
+
---------------------------------------------
|
|
2423
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2424
|
+
---------------------------------------------
|
|
2425
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2426
|
+
Parameters: {"id"=>"Tools"}
|
|
2427
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.4ms)
|
|
2428
|
+
Completed 200 OK in 8ms (Views: 4.9ms)
|
|
2429
|
+
-------------------------------------------------
|
|
2430
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2431
|
+
-------------------------------------------------
|
|
2432
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2433
|
+
Completed 500 Internal Server Error in 2ms
|
|
2434
|
+
------------------------------------------------
|
|
2435
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2436
|
+
------------------------------------------------
|
|
2437
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2438
|
+
Parameters: {"id"=>"Resque"}
|
|
2439
|
+
Completed 500 Internal Server Error in 1ms
|
|
2440
|
+
-------------------------
|
|
2441
|
+
TechRadarTest: test_truth
|
|
2442
|
+
-------------------------
|
|
2443
|
+
-----------------------------------
|
|
2444
|
+
TechRadar::RadarTest: test_quadrant
|
|
2445
|
+
-----------------------------------
|
|
2446
|
+
------------------------------------
|
|
2447
|
+
TechRadar::RadarTest: test_quadrants
|
|
2448
|
+
------------------------------------
|
|
2449
|
+
-------------------------------------
|
|
2450
|
+
TechRadar::RadarTest: test_technology
|
|
2451
|
+
-------------------------------------
|
|
2452
|
+
---------------------------------------
|
|
2453
|
+
TechRadar::RadarTest: test_technologies
|
|
2454
|
+
---------------------------------------
|
|
2455
|
+
-------------------------
|
|
2456
|
+
TechRadarTest: test_truth
|
|
2457
|
+
-------------------------
|
|
2458
|
+
---------------------------------------------------------------------
|
|
2459
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2460
|
+
---------------------------------------------------------------------
|
|
2461
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2462
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (5.6ms)
|
|
2463
|
+
Completed 200 OK in 152ms (Views: 152.3ms)
|
|
2464
|
+
-----------------------------------------------------------
|
|
2465
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2466
|
+
-----------------------------------------------------------
|
|
2467
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2468
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
2469
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
2470
|
+
-------------------------------------
|
|
2471
|
+
TechRadar::RadarTest: test_technology
|
|
2472
|
+
-------------------------------------
|
|
2473
|
+
------------------------------------
|
|
2474
|
+
TechRadar::RadarTest: test_quadrants
|
|
2475
|
+
------------------------------------
|
|
2476
|
+
-----------------------------------
|
|
2477
|
+
TechRadar::RadarTest: test_quadrant
|
|
2478
|
+
-----------------------------------
|
|
2479
|
+
---------------------------------------
|
|
2480
|
+
TechRadar::RadarTest: test_technologies
|
|
2481
|
+
---------------------------------------
|
|
2482
|
+
---------------------------------------------
|
|
2483
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2484
|
+
---------------------------------------------
|
|
2485
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2486
|
+
Parameters: {"id"=>"Tools"}
|
|
2487
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.5ms)
|
|
2488
|
+
Completed 200 OK in 7ms (Views: 5.4ms)
|
|
2489
|
+
------------------------------------------------
|
|
2490
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2491
|
+
------------------------------------------------
|
|
2492
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2493
|
+
Parameters: {"id"=>"Resque"}
|
|
2494
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
2495
|
+
Completed 200 OK in 8ms (Views: 5.6ms)
|
|
2496
|
+
-------------------------------------------------
|
|
2497
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2498
|
+
-------------------------------------------------
|
|
2499
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2500
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
2501
|
+
Completed 200 OK in 6ms (Views: 3.8ms)
|
|
2502
|
+
---------------------------------------------------------------------
|
|
2503
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2504
|
+
---------------------------------------------------------------------
|
|
2505
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2506
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/tech_radar/application (5.8ms)
|
|
2507
|
+
Completed 200 OK in 142ms (Views: 141.6ms)
|
|
2508
|
+
-----------------------------------------------------------
|
|
2509
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2510
|
+
-----------------------------------------------------------
|
|
2511
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2512
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/tech_radar/application (0.2ms)
|
|
2513
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
2514
|
+
-------------------------------------------------
|
|
2515
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2516
|
+
-------------------------------------------------
|
|
2517
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2518
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/tech_radar/application (0.4ms)
|
|
2519
|
+
Completed 200 OK in 9ms (Views: 4.9ms)
|
|
2520
|
+
------------------------------------------------
|
|
2521
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2522
|
+
------------------------------------------------
|
|
2523
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2524
|
+
Parameters: {"id"=>"Resque"}
|
|
2525
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/tech_radar/application (0.3ms)
|
|
2526
|
+
Completed 200 OK in 4ms (Views: 2.4ms)
|
|
2527
|
+
------------------------------------
|
|
2528
|
+
TechRadar::RadarTest: test_quadrants
|
|
2529
|
+
------------------------------------
|
|
2530
|
+
---------------------------------------
|
|
2531
|
+
TechRadar::RadarTest: test_technologies
|
|
2532
|
+
---------------------------------------
|
|
2533
|
+
-----------------------------------
|
|
2534
|
+
TechRadar::RadarTest: test_quadrant
|
|
2535
|
+
-----------------------------------
|
|
2536
|
+
-------------------------------------
|
|
2537
|
+
TechRadar::RadarTest: test_technology
|
|
2538
|
+
-------------------------------------
|
|
2539
|
+
---------------------------------------------
|
|
2540
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2541
|
+
---------------------------------------------
|
|
2542
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2543
|
+
Parameters: {"id"=>"Tools"}
|
|
2544
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/tech_radar/application (0.5ms)
|
|
2545
|
+
Completed 200 OK in 8ms (Views: 6.8ms)
|
|
2546
|
+
-------------------------
|
|
2547
|
+
TechRadarTest: test_truth
|
|
2548
|
+
-------------------------
|
|
2549
|
+
------------------------------------------------
|
|
2550
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2551
|
+
------------------------------------------------
|
|
2552
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2553
|
+
Parameters: {"id"=>"Resque"}
|
|
2554
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/application (1.3ms)
|
|
2555
|
+
Completed 200 OK in 168ms (Views: 161.0ms)
|
|
2556
|
+
-------------------------------------------------
|
|
2557
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2558
|
+
-------------------------------------------------
|
|
2559
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2560
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/application (1.0ms)
|
|
2561
|
+
Completed 200 OK in 5ms (Views: 3.7ms)
|
|
2562
|
+
---------------------------------------------
|
|
2563
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2564
|
+
---------------------------------------------
|
|
2565
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2566
|
+
Parameters: {"id"=>"Tools"}
|
|
2567
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/application (0.8ms)
|
|
2568
|
+
Completed 200 OK in 6ms (Views: 5.0ms)
|
|
2569
|
+
---------------------------------------------------------------------
|
|
2570
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2571
|
+
---------------------------------------------------------------------
|
|
2572
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2573
|
+
Completed 500 Internal Server Error in 0ms
|
|
2574
|
+
-----------------------------------------------------------
|
|
2575
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2576
|
+
-----------------------------------------------------------
|
|
2577
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2578
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/application (0.3ms)
|
|
2579
|
+
Completed 200 OK in 4ms (Views: 3.5ms)
|
|
2580
|
+
---------------------------------------
|
|
2581
|
+
TechRadar::RadarTest: test_technologies
|
|
2582
|
+
---------------------------------------
|
|
2583
|
+
--------------------------------
|
|
2584
|
+
TechRadar::RadarTest: test_rings
|
|
2585
|
+
--------------------------------
|
|
2586
|
+
-----------------------------------
|
|
2587
|
+
TechRadar::RadarTest: test_quadrant
|
|
2588
|
+
-----------------------------------
|
|
2589
|
+
------------------------------------
|
|
2590
|
+
TechRadar::RadarTest: test_quadrants
|
|
2591
|
+
------------------------------------
|
|
2592
|
+
-------------------------------------
|
|
2593
|
+
TechRadar::RadarTest: test_technology
|
|
2594
|
+
-------------------------------------
|
|
2595
|
+
--------------------------------
|
|
2596
|
+
TechRadar::RadarTest: test_rings
|
|
2597
|
+
--------------------------------
|
|
2598
|
+
---------------------------------------
|
|
2599
|
+
TechRadar::RadarTest: test_technologies
|
|
2600
|
+
---------------------------------------
|
|
2601
|
+
-----------------------------------
|
|
2602
|
+
TechRadar::RadarTest: test_quadrant
|
|
2603
|
+
-----------------------------------
|
|
2604
|
+
------------------------------------
|
|
2605
|
+
TechRadar::RadarTest: test_quadrants
|
|
2606
|
+
------------------------------------
|
|
2607
|
+
-------------------------------------
|
|
2608
|
+
TechRadar::RadarTest: test_technology
|
|
2609
|
+
-------------------------------------
|
|
2610
|
+
---------------------------------------------------------------------
|
|
2611
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2612
|
+
---------------------------------------------------------------------
|
|
2613
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2614
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/application (6.5ms)
|
|
2615
|
+
Completed 200 OK in 137ms (Views: 133.8ms)
|
|
2616
|
+
-----------------------------------------------------------
|
|
2617
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2618
|
+
-----------------------------------------------------------
|
|
2619
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2620
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/application (0.2ms)
|
|
2621
|
+
Completed 200 OK in 2ms (Views: 2.3ms)
|
|
2622
|
+
------------------------------------------------
|
|
2623
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2624
|
+
------------------------------------------------
|
|
2625
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2626
|
+
Parameters: {"id"=>"Resque"}
|
|
2627
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/application (0.3ms)
|
|
2628
|
+
Completed 200 OK in 6ms (Views: 4.1ms)
|
|
2629
|
+
-------------------------------------------------
|
|
2630
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2631
|
+
-------------------------------------------------
|
|
2632
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2633
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/application (0.7ms)
|
|
2634
|
+
Completed 200 OK in 4ms (Views: 2.9ms)
|
|
2635
|
+
---------------------------------------------
|
|
2636
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2637
|
+
---------------------------------------------
|
|
2638
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2639
|
+
Parameters: {"id"=>"Tools"}
|
|
2640
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/application (0.4ms)
|
|
2641
|
+
Completed 200 OK in 5ms (Views: 4.1ms)
|
|
2642
|
+
---------------------------------------
|
|
2643
|
+
TechRadar::RadarTest: test_technologies
|
|
2644
|
+
---------------------------------------
|
|
2645
|
+
--------------------------------
|
|
2646
|
+
TechRadar::RadarTest: test_rings
|
|
2647
|
+
--------------------------------
|
|
2648
|
+
-----------------------------------
|
|
2649
|
+
TechRadar::RadarTest: test_quadrant
|
|
2650
|
+
-----------------------------------
|
|
2651
|
+
------------------------------------
|
|
2652
|
+
TechRadar::RadarTest: test_quadrants
|
|
2653
|
+
------------------------------------
|
|
2654
|
+
-------------------------------------
|
|
2655
|
+
TechRadar::RadarTest: test_technology
|
|
2656
|
+
-------------------------------------
|
|
2657
|
+
-----------------------------------------------------------
|
|
2658
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2659
|
+
-----------------------------------------------------------
|
|
2660
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2661
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/application (1.0ms)
|
|
2662
|
+
Completed 200 OK in 130ms (Views: 129.5ms)
|
|
2663
|
+
---------------------------------------------------------------------
|
|
2664
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2665
|
+
---------------------------------------------------------------------
|
|
2666
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2667
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/application (3.0ms)
|
|
2668
|
+
Completed 200 OK in 6ms (Views: 5.2ms)
|
|
2669
|
+
---------------------------------------------
|
|
2670
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2671
|
+
---------------------------------------------
|
|
2672
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2673
|
+
Parameters: {"id"=>"Tools"}
|
|
2674
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/application (0.4ms)
|
|
2675
|
+
Completed 200 OK in 5ms (Views: 3.8ms)
|
|
2676
|
+
-------------------------------------------------
|
|
2677
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2678
|
+
-------------------------------------------------
|
|
2679
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2680
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/application (1.0ms)
|
|
2681
|
+
Completed 200 OK in 7ms (Views: 4.9ms)
|
|
2682
|
+
------------------------------------------------
|
|
2683
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2684
|
+
------------------------------------------------
|
|
2685
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2686
|
+
Parameters: {"id"=>"Resque"}
|
|
2687
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/application (0.3ms)
|
|
2688
|
+
Completed 200 OK in 4ms (Views: 2.3ms)
|
|
2689
|
+
---------------------------------------------
|
|
2690
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2691
|
+
---------------------------------------------
|
|
2692
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2693
|
+
Parameters: {"id"=>"Tools"}
|
|
2694
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/application (1.1ms)
|
|
2695
|
+
Completed 200 OK in 142ms (Views: 136.9ms)
|
|
2696
|
+
------------------------------------
|
|
2697
|
+
TechRadar::RadarTest: test_quadrants
|
|
2698
|
+
------------------------------------
|
|
2699
|
+
--------------------------------
|
|
2700
|
+
TechRadar::RadarTest: test_rings
|
|
2701
|
+
--------------------------------
|
|
2702
|
+
-----------------------------------
|
|
2703
|
+
TechRadar::RadarTest: test_quadrant
|
|
2704
|
+
-----------------------------------
|
|
2705
|
+
---------------------------------------
|
|
2706
|
+
TechRadar::RadarTest: test_technologies
|
|
2707
|
+
---------------------------------------
|
|
2708
|
+
-------------------------------------
|
|
2709
|
+
TechRadar::RadarTest: test_technology
|
|
2710
|
+
-------------------------------------
|
|
2711
|
+
-------------------------------------------------
|
|
2712
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2713
|
+
-------------------------------------------------
|
|
2714
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2715
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/application (0.7ms)
|
|
2716
|
+
Completed 200 OK in 6ms (Views: 4.1ms)
|
|
2717
|
+
------------------------------------------------
|
|
2718
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2719
|
+
------------------------------------------------
|
|
2720
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2721
|
+
Parameters: {"id"=>"Resque"}
|
|
2722
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/application (0.5ms)
|
|
2723
|
+
Completed 200 OK in 4ms (Views: 2.6ms)
|
|
2724
|
+
---------------------------------------------------------------------
|
|
2725
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2726
|
+
---------------------------------------------------------------------
|
|
2727
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2728
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/application (3.2ms)
|
|
2729
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
|
2730
|
+
-----------------------------------------------------------
|
|
2731
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2732
|
+
-----------------------------------------------------------
|
|
2733
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2734
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/application (0.6ms)
|
|
2735
|
+
Completed 200 OK in 4ms (Views: 3.9ms)
|
|
2736
|
+
---------------------------------------------------------------------
|
|
2737
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2738
|
+
---------------------------------------------------------------------
|
|
2739
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2740
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/application (17.9ms)
|
|
2741
|
+
Completed 200 OK in 149ms (Views: 147.1ms)
|
|
2742
|
+
-----------------------------------------------------------
|
|
2743
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2744
|
+
-----------------------------------------------------------
|
|
2745
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2746
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/application (0.3ms)
|
|
2747
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
|
2748
|
+
---------------------------------------------
|
|
2749
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2750
|
+
---------------------------------------------
|
|
2751
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2752
|
+
Parameters: {"id"=>"Tools"}
|
|
2753
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/application (10.1ms)
|
|
2754
|
+
Completed 200 OK in 15ms (Views: 13.4ms)
|
|
2755
|
+
-----------------------------------
|
|
2756
|
+
TechRadar::RadarTest: test_quadrant
|
|
2757
|
+
-----------------------------------
|
|
2758
|
+
------------------------------------
|
|
2759
|
+
TechRadar::RadarTest: test_quadrants
|
|
2760
|
+
------------------------------------
|
|
2761
|
+
--------------------------------
|
|
2762
|
+
TechRadar::RadarTest: test_rings
|
|
2763
|
+
--------------------------------
|
|
2764
|
+
---------------------------------------
|
|
2765
|
+
TechRadar::RadarTest: test_technologies
|
|
2766
|
+
---------------------------------------
|
|
2767
|
+
-------------------------------------
|
|
2768
|
+
TechRadar::RadarTest: test_technology
|
|
2769
|
+
-------------------------------------
|
|
2770
|
+
-------------------------------------------------
|
|
2771
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2772
|
+
-------------------------------------------------
|
|
2773
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2774
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/application (3.2ms)
|
|
2775
|
+
Completed 500 Internal Server Error in 8ms
|
|
2776
|
+
------------------------------------------------
|
|
2777
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2778
|
+
------------------------------------------------
|
|
2779
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2780
|
+
Parameters: {"id"=>"Resque"}
|
|
2781
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/application (2.0ms)
|
|
2782
|
+
Completed 500 Internal Server Error in 5ms
|
|
2783
|
+
---------------------------------------------------------------------
|
|
2784
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2785
|
+
---------------------------------------------------------------------
|
|
2786
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2787
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/application (17.0ms)
|
|
2788
|
+
Completed 200 OK in 155ms (Views: 151.0ms)
|
|
2789
|
+
-----------------------------------------------------------
|
|
2790
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2791
|
+
-----------------------------------------------------------
|
|
2792
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2793
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/application (0.3ms)
|
|
2794
|
+
Completed 200 OK in 3ms (Views: 3.0ms)
|
|
2795
|
+
---------------------------------------------
|
|
2796
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2797
|
+
---------------------------------------------
|
|
2798
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2799
|
+
Parameters: {"id"=>"Tools"}
|
|
2800
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/application (18.2ms)
|
|
2801
|
+
Completed 200 OK in 26ms (Views: 24.2ms)
|
|
2802
|
+
-------------------------------------------------
|
|
2803
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2804
|
+
-------------------------------------------------
|
|
2805
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2806
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/application (0.9ms)
|
|
2807
|
+
Completed 200 OK in 8ms (Views: 5.6ms)
|
|
2808
|
+
------------------------------------------------
|
|
2809
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2810
|
+
------------------------------------------------
|
|
2811
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2812
|
+
Parameters: {"id"=>"Resque"}
|
|
2813
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/application (1.2ms)
|
|
2814
|
+
Completed 200 OK in 8ms (Views: 4.7ms)
|
|
2815
|
+
---------------------------------------
|
|
2816
|
+
TechRadar::RadarTest: test_technologies
|
|
2817
|
+
---------------------------------------
|
|
2818
|
+
-----------------------------------
|
|
2819
|
+
TechRadar::RadarTest: test_quadrant
|
|
2820
|
+
-----------------------------------
|
|
2821
|
+
-------------------------------------
|
|
2822
|
+
TechRadar::RadarTest: test_technology
|
|
2823
|
+
-------------------------------------
|
|
2824
|
+
------------------------------------
|
|
2825
|
+
TechRadar::RadarTest: test_quadrants
|
|
2826
|
+
------------------------------------
|
|
2827
|
+
--------------------------------
|
|
2828
|
+
TechRadar::RadarTest: test_rings
|
|
2829
|
+
--------------------------------
|
|
2830
|
+
---------------------------------------------------------------------
|
|
2831
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2832
|
+
---------------------------------------------------------------------
|
|
2833
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2834
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/application (19.9ms)
|
|
2835
|
+
Completed 200 OK in 197ms (Views: 194.9ms)
|
|
2836
|
+
-----------------------------------------------------------
|
|
2837
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2838
|
+
-----------------------------------------------------------
|
|
2839
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2840
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/application (0.2ms)
|
|
2841
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
2842
|
+
--------------------------------
|
|
2843
|
+
TechRadar::RadarTest: test_rings
|
|
2844
|
+
--------------------------------
|
|
2845
|
+
---------------------------------------
|
|
2846
|
+
TechRadar::RadarTest: test_technologies
|
|
2847
|
+
---------------------------------------
|
|
2848
|
+
-----------------------------------
|
|
2849
|
+
TechRadar::RadarTest: test_quadrant
|
|
2850
|
+
-----------------------------------
|
|
2851
|
+
-------------------------------------
|
|
2852
|
+
TechRadar::RadarTest: test_technology
|
|
2853
|
+
-------------------------------------
|
|
2854
|
+
------------------------------------
|
|
2855
|
+
TechRadar::RadarTest: test_quadrants
|
|
2856
|
+
------------------------------------
|
|
2857
|
+
---------------------------------------------
|
|
2858
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2859
|
+
---------------------------------------------
|
|
2860
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2861
|
+
Parameters: {"id"=>"Tools"}
|
|
2862
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/application (10.9ms)
|
|
2863
|
+
Completed 200 OK in 16ms (Views: 14.5ms)
|
|
2864
|
+
-------------------------------------------------
|
|
2865
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2866
|
+
-------------------------------------------------
|
|
2867
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2868
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/application (4.2ms)
|
|
2869
|
+
Completed 500 Internal Server Error in 8ms
|
|
2870
|
+
------------------------------------------------
|
|
2871
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2872
|
+
------------------------------------------------
|
|
2873
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2874
|
+
Parameters: {"id"=>"Resque"}
|
|
2875
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/application (8.7ms)
|
|
2876
|
+
Completed 500 Internal Server Error in 12ms
|
|
2877
|
+
-------------------------------------
|
|
2878
|
+
TechRadar::RadarTest: test_technology
|
|
2879
|
+
-------------------------------------
|
|
2880
|
+
--------------------------------
|
|
2881
|
+
TechRadar::RadarTest: test_rings
|
|
2882
|
+
--------------------------------
|
|
2883
|
+
------------------------------------
|
|
2884
|
+
TechRadar::RadarTest: test_quadrants
|
|
2885
|
+
------------------------------------
|
|
2886
|
+
---------------------------------------
|
|
2887
|
+
TechRadar::RadarTest: test_technologies
|
|
2888
|
+
---------------------------------------
|
|
2889
|
+
-----------------------------------
|
|
2890
|
+
TechRadar::RadarTest: test_quadrant
|
|
2891
|
+
-----------------------------------
|
|
2892
|
+
---------------------------------------------
|
|
2893
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2894
|
+
---------------------------------------------
|
|
2895
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2896
|
+
Parameters: {"id"=>"Tools"}
|
|
2897
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/application (18.1ms)
|
|
2898
|
+
Completed 200 OK in 151ms (Views: 148.8ms)
|
|
2899
|
+
---------------------------------------------------------------------
|
|
2900
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2901
|
+
---------------------------------------------------------------------
|
|
2902
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2903
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/application (7.4ms)
|
|
2904
|
+
Completed 200 OK in 13ms (Views: 11.8ms)
|
|
2905
|
+
-----------------------------------------------------------
|
|
2906
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2907
|
+
-----------------------------------------------------------
|
|
2908
|
+
Processing by TechRadar::RadarController#graph as HTML
|
|
2909
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/graph.html.erb within layouts/application (0.3ms)
|
|
2910
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
2911
|
+
-------------------------------------------------
|
|
2912
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2913
|
+
-------------------------------------------------
|
|
2914
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2915
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/application (26.0ms)
|
|
2916
|
+
Completed 500 Internal Server Error in 31ms
|
|
2917
|
+
------------------------------------------------
|
|
2918
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2919
|
+
------------------------------------------------
|
|
2920
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2921
|
+
Parameters: {"id"=>"Resque"}
|
|
2922
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/application (1.1ms)
|
|
2923
|
+
Completed 200 OK in 5ms (Views: 3.4ms)
|
|
2924
|
+
-----------------------------------
|
|
2925
|
+
TechRadar::RadarTest: test_quadrant
|
|
2926
|
+
-----------------------------------
|
|
2927
|
+
-------------------------------------
|
|
2928
|
+
TechRadar::RadarTest: test_technology
|
|
2929
|
+
-------------------------------------
|
|
2930
|
+
------------------------------------
|
|
2931
|
+
TechRadar::RadarTest: test_quadrants
|
|
2932
|
+
------------------------------------
|
|
2933
|
+
--------------------------------
|
|
2934
|
+
TechRadar::RadarTest: test_rings
|
|
2935
|
+
--------------------------------
|
|
2936
|
+
---------------------------------------
|
|
2937
|
+
TechRadar::RadarTest: test_technologies
|
|
2938
|
+
---------------------------------------
|
|
2939
|
+
---------------------------------------------
|
|
2940
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
2941
|
+
---------------------------------------------
|
|
2942
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
2943
|
+
Parameters: {"id"=>"Tools"}
|
|
2944
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/application (22.5ms)
|
|
2945
|
+
Completed 200 OK in 153ms (Views: 150.4ms)
|
|
2946
|
+
---------------------------------------------------------------------
|
|
2947
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2948
|
+
---------------------------------------------------------------------
|
|
2949
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2950
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/application (12.2ms)
|
|
2951
|
+
Completed 200 OK in 19ms (Views: 18.0ms)
|
|
2952
|
+
-----------------------------------------------------------
|
|
2953
|
+
TechRadar::RadarControllerTest: test_the_radar_graph_screen
|
|
2954
|
+
-----------------------------------------------------------
|
|
2955
|
+
-------------------------------------------------
|
|
2956
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2957
|
+
-------------------------------------------------
|
|
2958
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2959
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/application (21.8ms)
|
|
2960
|
+
Completed 200 OK in 28ms (Views: 26.4ms)
|
|
2961
|
+
------------------------------------------------
|
|
2962
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2963
|
+
------------------------------------------------
|
|
2964
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2965
|
+
Parameters: {"id"=>"Resque"}
|
|
2966
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/application (1.1ms)
|
|
2967
|
+
Completed 200 OK in 5ms (Views: 3.7ms)
|
|
2968
|
+
-------------------------------------------------
|
|
2969
|
+
TechRadar::TechnologiesControllerTest: test_index
|
|
2970
|
+
-------------------------------------------------
|
|
2971
|
+
Processing by TechRadar::TechnologiesController#index as HTML
|
|
2972
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/index.html.erb within layouts/application (31.5ms)
|
|
2973
|
+
Completed 200 OK in 161ms (Views: 149.7ms)
|
|
2974
|
+
------------------------------------------------
|
|
2975
|
+
TechRadar::TechnologiesControllerTest: test_show
|
|
2976
|
+
------------------------------------------------
|
|
2977
|
+
Processing by TechRadar::TechnologiesController#show as HTML
|
|
2978
|
+
Parameters: {"id"=>"Resque"}
|
|
2979
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/technologies/show.html.erb within layouts/application (3.3ms)
|
|
2980
|
+
Completed 200 OK in 7ms (Views: 5.5ms)
|
|
2981
|
+
-------------------------------------------------------------
|
|
2982
|
+
TechRadar::RadarControllerTest: test_the_radar_summary_screen
|
|
2983
|
+
-------------------------------------------------------------
|
|
2984
|
+
Processing by TechRadar::RadarController#summary as HTML
|
|
2985
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/summary.html.erb within layouts/application (25.1ms)
|
|
2986
|
+
Completed 200 OK in 31ms (Views: 29.7ms)
|
|
2987
|
+
---------------------------------------------------------------------
|
|
2988
|
+
TechRadar::RadarControllerTest: test_parent_app_can_override_messages
|
|
2989
|
+
---------------------------------------------------------------------
|
|
2990
|
+
Processing by TechRadar::RadarController#index as HTML
|
|
2991
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/radar/index.html.erb within layouts/application (10.7ms)
|
|
2992
|
+
Completed 200 OK in 14ms (Views: 12.9ms)
|
|
2993
|
+
------------------------------------
|
|
2994
|
+
TechRadar::RadarTest: test_quadrants
|
|
2995
|
+
------------------------------------
|
|
2996
|
+
---------------------------------------
|
|
2997
|
+
TechRadar::RadarTest: test_technologies
|
|
2998
|
+
---------------------------------------
|
|
2999
|
+
-------------------------------------
|
|
3000
|
+
TechRadar::RadarTest: test_technology
|
|
3001
|
+
-------------------------------------
|
|
3002
|
+
--------------------------------
|
|
3003
|
+
TechRadar::RadarTest: test_rings
|
|
3004
|
+
--------------------------------
|
|
3005
|
+
-----------------------------------
|
|
3006
|
+
TechRadar::RadarTest: test_quadrant
|
|
3007
|
+
-----------------------------------
|
|
3008
|
+
---------------------------------------------
|
|
3009
|
+
TechRadar::QuadrantsControllerTest: test_show
|
|
3010
|
+
---------------------------------------------
|
|
3011
|
+
Processing by TechRadar::QuadrantsController#show as HTML
|
|
3012
|
+
Parameters: {"id"=>"Tools"}
|
|
3013
|
+
Rendered /Users/davec/Projects/StitchFix/tech_radar/app/views/tech_radar/quadrants/show.html.erb within layouts/application (15.3ms)
|
|
3014
|
+
Completed 200 OK in 20ms (Views: 18.7ms)
|