facebook_js 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.
Files changed (46) hide show
  1. checksums.yaml +15 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +40 -0
  4. data/Rakefile +22 -0
  5. data/app/helpers/facebook_js_helper.rb +20 -0
  6. data/app/views/facebook_js_helper/_facebook.html.erb +23 -0
  7. data/lib/facebook_js.rb +4 -0
  8. data/lib/facebook_js/engine.rb +45 -0
  9. data/lib/facebook_js/version.rb +3 -0
  10. data/test/dummy/README.rdoc +28 -0
  11. data/test/dummy/Rakefile +6 -0
  12. data/test/dummy/app/assets/javascripts/application.js +16 -0
  13. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  14. data/test/dummy/app/controllers/application_controller.rb +5 -0
  15. data/test/dummy/app/helpers/application_helper.rb +2 -0
  16. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  17. data/test/dummy/bin/bundle +3 -0
  18. data/test/dummy/bin/rails +4 -0
  19. data/test/dummy/bin/rake +4 -0
  20. data/test/dummy/config.ru +4 -0
  21. data/test/dummy/config/application.rb +24 -0
  22. data/test/dummy/config/boot.rb +9 -0
  23. data/test/dummy/config/database.yml +25 -0
  24. data/test/dummy/config/environment.rb +5 -0
  25. data/test/dummy/config/environments/development.rb +26 -0
  26. data/test/dummy/config/environments/production.rb +80 -0
  27. data/test/dummy/config/environments/test.rb +36 -0
  28. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  29. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  30. data/test/dummy/config/initializers/inflections.rb +16 -0
  31. data/test/dummy/config/initializers/mime_types.rb +5 -0
  32. data/test/dummy/config/initializers/secret_token.rb +12 -0
  33. data/test/dummy/config/initializers/session_store.rb +3 -0
  34. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  35. data/test/dummy/config/locales/en.yml +23 -0
  36. data/test/dummy/config/routes.rb +4 -0
  37. data/test/dummy/log/test.log +1498 -0
  38. data/test/dummy/public/404.html +27 -0
  39. data/test/dummy/public/422.html +26 -0
  40. data/test/dummy/public/500.html +26 -0
  41. data/test/dummy/public/favicon.ico +0 -0
  42. data/test/facebook_js_test.rb +7 -0
  43. data/test/helpers/facebook_js_helper_test.rb +49 -0
  44. data/test/integration/navigation_test.rb +22 -0
  45. data/test/test_helper.rb +7 -0
  46. metadata +139 -0
@@ -0,0 +1,36 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static asset server for tests with Cache-Control for performance.
16
+ config.serve_static_assets = true
17
+ config.static_cache_control = "public, max-age=3600"
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ # config.action_mailer.delivery_method = :test
33
+
34
+ # Print deprecation notices to the stderr.
35
+ config.active_support.deprecation = :stderr
36
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = 'e46bf5cd34c21a30239bfab7bacd7f3c74f6297cc625947ac5ad28c73be9135d1730d15931e8a909933c2ac09ec9e20c0dff5543543974aec03b2c123a5b39ca'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :encrypted_cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount FacebookJs::Engine => "/facebook_js"
4
+ end
@@ -0,0 +1,1498 @@
1
+ --------------------------
2
+ FacebookJsTest: test_truth
3
+ --------------------------
4
+  (0.3ms) begin transaction
5
+  (0.0ms) rollback transaction
6
+ --------------------------
7
+ FacebookJsTest: test_truth
8
+ --------------------------
9
+  (0.4ms) begin transaction
10
+  (0.0ms) rollback transaction
11
+ --------------------------
12
+ FacebookJsTest: test_truth
13
+ --------------------------
14
+  (0.3ms) begin transaction
15
+  (0.0ms) rollback transaction
16
+ --------------------------
17
+ FacebookJsTest: test_truth
18
+ --------------------------
19
+  (0.3ms) begin transaction
20
+  (0.0ms) rollback transaction
21
+ --------------------------
22
+ FacebookJsTest: test_truth
23
+ --------------------------
24
+ --------------------------
25
+ FacebookJsTest: test_truth
26
+ --------------------------
27
+ -----------------------------------------------------------------
28
+ NavigationTest: test_/channel.html_sholud_have_the_proper_content
29
+ -----------------------------------------------------------------
30
+ --------------------------
31
+ FacebookJsTest: test_truth
32
+ --------------------------
33
+ -----------------------------------------------------------------
34
+ NavigationTest: test_/channel.html_sholud_have_the_proper_content
35
+ -----------------------------------------------------------------
36
+ --------------------------
37
+ FacebookJsTest: test_truth
38
+ --------------------------
39
+ -----------------------------------------------------------------
40
+ NavigationTest: test_/channel.html_sholud_have_the_proper_content
41
+ -----------------------------------------------------------------
42
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:03:38 -0700
43
+ --------------------------
44
+ FacebookJsTest: test_truth
45
+ --------------------------
46
+ -----------------------------------------------------------------
47
+ NavigationTest: test_/channel.html_sholud_have_the_proper_content
48
+ -----------------------------------------------------------------
49
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:03:55 -0700
50
+ --------------------------
51
+ FacebookJsTest: test_truth
52
+ --------------------------
53
+ -----------------------------------------------------------------
54
+ NavigationTest: test_/channel.html_sholud_have_the_proper_content
55
+ -----------------------------------------------------------------
56
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:06:13 -0700
57
+
58
+ ***** Debugger requested, but was not available (ensure the debugger gem is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
59
+
60
+ --------------------------
61
+ FacebookJsTest: test_truth
62
+ --------------------------
63
+ -----------------------------------------------------------------
64
+ NavigationTest: test_/channel.html_sholud_have_the_proper_content
65
+ -----------------------------------------------------------------
66
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:06:37 -0700
67
+ --------------------------
68
+ FacebookJsTest: test_truth
69
+ --------------------------
70
+ -----------------------------------------------------------------
71
+ NavigationTest: test_/channel.html_sholud_have_the_proper_content
72
+ -----------------------------------------------------------------
73
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:08:13 -0700
74
+ --------------------------
75
+ FacebookJsTest: test_truth
76
+ --------------------------
77
+ -----------------------------------------------------------------
78
+ NavigationTest: test_/channel.html_should_have_the_proper_content
79
+ -----------------------------------------------------------------
80
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:09:41 -0700
81
+ -----------------------------------------------------------------
82
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
83
+ -----------------------------------------------------------------
84
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:09:41 -0700
85
+ --------------------------
86
+ FacebookJsTest: test_truth
87
+ --------------------------
88
+ -----------------------------------------------------------------
89
+ NavigationTest: test_/channel.html_should_have_the_proper_content
90
+ -----------------------------------------------------------------
91
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:13:58 -0700
92
+ -----------------------------------------------------------------
93
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
94
+ -----------------------------------------------------------------
95
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:13:58 -0700
96
+ --------------------------
97
+ FacebookJsTest: test_truth
98
+ --------------------------
99
+ ----------------------------
100
+ HelperTest: test_should_work
101
+ ----------------------------
102
+ -----------------------------------------------------------------
103
+ NavigationTest: test_/channel.html_should_have_the_proper_content
104
+ -----------------------------------------------------------------
105
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:17:04 -0700
106
+ -----------------------------------------------------------------
107
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
108
+ -----------------------------------------------------------------
109
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:17:04 -0700
110
+ --------------------------
111
+ FacebookJsTest: test_truth
112
+ --------------------------
113
+ ----------------------------
114
+ HelperTest: test_should_work
115
+ ----------------------------
116
+ -----------------------------------------------------------------
117
+ NavigationTest: test_/channel.html_should_have_the_proper_content
118
+ -----------------------------------------------------------------
119
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:18:54 -0700
120
+ -----------------------------------------------------------------
121
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
122
+ -----------------------------------------------------------------
123
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:18:54 -0700
124
+ --------------------------
125
+ FacebookJsTest: test_truth
126
+ --------------------------
127
+ ----------------------------
128
+ HelperTest: test_should_work
129
+ ----------------------------
130
+ -----------------------------------------------------------------
131
+ NavigationTest: test_/channel.html_should_have_the_proper_content
132
+ -----------------------------------------------------------------
133
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:19:06 -0700
134
+ -----------------------------------------------------------------
135
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
136
+ -----------------------------------------------------------------
137
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:19:06 -0700
138
+ --------------------------
139
+ FacebookJsTest: test_truth
140
+ --------------------------
141
+ ----------------------------
142
+ HelperTest: test_should_work
143
+ ----------------------------
144
+ -----------------------------------------------------------------
145
+ NavigationTest: test_/channel.html_should_have_the_proper_content
146
+ -----------------------------------------------------------------
147
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:19:29 -0700
148
+ -----------------------------------------------------------------
149
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
150
+ -----------------------------------------------------------------
151
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:19:29 -0700
152
+ --------------------------
153
+ FacebookJsTest: test_truth
154
+ --------------------------
155
+ ----------------------------
156
+ HelperTest: test_should_work
157
+ ----------------------------
158
+ -----------------------------------------------------------------
159
+ NavigationTest: test_/channel.html_should_have_the_proper_content
160
+ -----------------------------------------------------------------
161
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:21:49 -0700
162
+ -----------------------------------------------------------------
163
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
164
+ -----------------------------------------------------------------
165
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:21:49 -0700
166
+ --------------------------
167
+ FacebookJsTest: test_truth
168
+ --------------------------
169
+ ----------------------------
170
+ HelperTest: test_should_work
171
+ ----------------------------
172
+ -----------------------------------------------------------------
173
+ NavigationTest: test_/channel.html_should_have_the_proper_content
174
+ -----------------------------------------------------------------
175
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:27:03 -0700
176
+ -----------------------------------------------------------------
177
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
178
+ -----------------------------------------------------------------
179
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:27:03 -0700
180
+ --------------------------
181
+ FacebookJsTest: test_truth
182
+ --------------------------
183
+ ----------------------------
184
+ HelperTest: test_should_work
185
+ ----------------------------
186
+ -----------------------------------------------------------------
187
+ NavigationTest: test_/channel.html_should_have_the_proper_content
188
+ -----------------------------------------------------------------
189
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:27:21 -0700
190
+ -----------------------------------------------------------------
191
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
192
+ -----------------------------------------------------------------
193
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:27:21 -0700
194
+ --------------------------
195
+ FacebookJsTest: test_truth
196
+ --------------------------
197
+ ----------------------------
198
+ HelperTest: test_should_work
199
+ ----------------------------
200
+ -----------------------------------------------------------------
201
+ NavigationTest: test_/channel.html_should_have_the_proper_content
202
+ -----------------------------------------------------------------
203
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:27:25 -0700
204
+ -----------------------------------------------------------------
205
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
206
+ -----------------------------------------------------------------
207
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:27:25 -0700
208
+ --------------------------
209
+ FacebookJsTest: test_truth
210
+ --------------------------
211
+ ----------------------------
212
+ HelperTest: test_should_work
213
+ ----------------------------
214
+ -----------------------------------------------------------------
215
+ NavigationTest: test_/channel.html_should_have_the_proper_content
216
+ -----------------------------------------------------------------
217
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:33:44 -0700
218
+ -----------------------------------------------------------------
219
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
220
+ -----------------------------------------------------------------
221
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:33:44 -0700
222
+ --------------------------
223
+ FacebookJsTest: test_truth
224
+ --------------------------
225
+ --------------------------------
226
+ HahaHelperTest: test_should_work
227
+ --------------------------------
228
+ ----------------------------
229
+ HelperTest: test_should_work
230
+ ----------------------------
231
+ -----------------------------------------------------------------
232
+ NavigationTest: test_/channel.html_should_have_the_proper_content
233
+ -----------------------------------------------------------------
234
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:34:34 -0700
235
+ -----------------------------------------------------------------
236
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
237
+ -----------------------------------------------------------------
238
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:34:34 -0700
239
+ --------------------------------------
240
+ FacebookJsHelperTest: test_should_work
241
+ --------------------------------------
242
+ --------------------------
243
+ FacebookJsTest: test_truth
244
+ --------------------------
245
+ -----------------------------------------------------------------
246
+ NavigationTest: test_/channel.html_should_have_the_proper_content
247
+ -----------------------------------------------------------------
248
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:36:04 -0700
249
+ -----------------------------------------------------------------
250
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
251
+ -----------------------------------------------------------------
252
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:36:04 -0700
253
+ --------------------------------------
254
+ FacebookJsHelperTest: test_should_work
255
+ --------------------------------------
256
+ --------------------------
257
+ FacebookJsTest: test_truth
258
+ --------------------------
259
+ ----------------------------
260
+ HelperTest: test_should_work
261
+ ----------------------------
262
+ -----------------------------------------------------------------
263
+ NavigationTest: test_/channel.html_should_have_the_proper_content
264
+ -----------------------------------------------------------------
265
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:41:47 -0700
266
+ -----------------------------------------------------------------
267
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
268
+ -----------------------------------------------------------------
269
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:41:47 -0700
270
+ --------------------------------------
271
+ FacebookJsHelperTest: test_should_work
272
+ --------------------------------------
273
+ --------------------------
274
+ FacebookJsTest: test_truth
275
+ --------------------------
276
+ ----------------------------
277
+ HelperTest: test_should_work
278
+ ----------------------------
279
+ -----------------------------------------------------------------
280
+ NavigationTest: test_/channel.html_should_have_the_proper_content
281
+ -----------------------------------------------------------------
282
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:42:09 -0700
283
+ -----------------------------------------------------------------
284
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
285
+ -----------------------------------------------------------------
286
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:42:09 -0700
287
+ --------------------------------------
288
+ FacebookJsHelperTest: test_should_work
289
+ --------------------------------------
290
+ --------------------------
291
+ FacebookJsTest: test_truth
292
+ --------------------------
293
+ ----------------------------
294
+ HelperTest: test_should_work
295
+ ----------------------------
296
+ -----------------------------------------------------------------
297
+ NavigationTest: test_/channel.html_should_have_the_proper_content
298
+ -----------------------------------------------------------------
299
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:42:41 -0700
300
+ -----------------------------------------------------------------
301
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
302
+ -----------------------------------------------------------------
303
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:42:41 -0700
304
+ --------------------------
305
+ FacebookJsTest: test_truth
306
+ --------------------------
307
+ ----------------------------
308
+ HelperTest: test_should_work
309
+ ----------------------------
310
+ -----------------------------------------------------------------
311
+ NavigationTest: test_/channel.html_should_have_the_proper_content
312
+ -----------------------------------------------------------------
313
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:43:25 -0700
314
+ -----------------------------------------------------------------
315
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
316
+ -----------------------------------------------------------------
317
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:43:25 -0700
318
+ --------------------------
319
+ FacebookJsTest: test_truth
320
+ --------------------------
321
+ -----------------------------------------------------------------
322
+ NavigationTest: test_/channel.html_should_have_the_proper_content
323
+ -----------------------------------------------------------------
324
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:43:46 -0700
325
+ -----------------------------------------------------------------
326
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
327
+ -----------------------------------------------------------------
328
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:43:46 -0700
329
+ -----------------------------------------------------------------------
330
+ FacebookJsHelperTest: test_/channel.html_should_have_the_proper_content
331
+ -----------------------------------------------------------------------
332
+ --------------------------
333
+ FacebookJsTest: test_truth
334
+ --------------------------
335
+ -----------------------------------------------------------------
336
+ NavigationTest: test_/channel.html_should_have_the_proper_content
337
+ -----------------------------------------------------------------
338
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:44:34 -0700
339
+ -----------------------------------------------------------------
340
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
341
+ -----------------------------------------------------------------
342
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:44:34 -0700
343
+ -----------------------------------------------------------------------
344
+ FacebookJsHelperTest: test_/channel.html_should_have_the_proper_content
345
+ -----------------------------------------------------------------------
346
+ --------------------------
347
+ FacebookJsTest: test_truth
348
+ --------------------------
349
+ -----------------------------------------------------------------
350
+ NavigationTest: test_/channel.html_should_have_the_proper_content
351
+ -----------------------------------------------------------------
352
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:45:21 -0700
353
+ -----------------------------------------------------------------
354
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
355
+ -----------------------------------------------------------------
356
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:45:21 -0700
357
+ -----------------------------------------------------------------------
358
+ FacebookJsHelperTest: test_/channel.html_should_have_the_proper_content
359
+ -----------------------------------------------------------------------
360
+ --------------------------
361
+ FacebookJsTest: test_truth
362
+ --------------------------
363
+ -----------------------------------------------------------------
364
+ NavigationTest: test_/channel.html_should_have_the_proper_content
365
+ -----------------------------------------------------------------
366
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:45:38 -0700
367
+ -----------------------------------------------------------------
368
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
369
+ -----------------------------------------------------------------
370
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:45:38 -0700
371
+ -----------------------------------------------------------------------
372
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content
373
+ -----------------------------------------------------------------------
374
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (5.2ms)
375
+ --------------------------
376
+ FacebookJsTest: test_truth
377
+ --------------------------
378
+ -----------------------------------------------------------------
379
+ NavigationTest: test_/channel.html_should_have_the_proper_content
380
+ -----------------------------------------------------------------
381
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:46:52 -0700
382
+ -----------------------------------------------------------------
383
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
384
+ -----------------------------------------------------------------
385
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:46:52 -0700
386
+ -----------------------------------------------------------------------
387
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content
388
+ -----------------------------------------------------------------------
389
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.3ms)
390
+ --------------------------
391
+ FacebookJsTest: test_truth
392
+ --------------------------
393
+ -----------------------------------------------------------------
394
+ NavigationTest: test_/channel.html_should_have_the_proper_content
395
+ -----------------------------------------------------------------
396
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:48:06 -0700
397
+ -----------------------------------------------------------------
398
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
399
+ -----------------------------------------------------------------
400
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:48:06 -0700
401
+ -----------------------------------------------------------------------
402
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content
403
+ -----------------------------------------------------------------------
404
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.7ms)
405
+ --------------------------
406
+ FacebookJsTest: test_truth
407
+ --------------------------
408
+ -----------------------------------------------------------------
409
+ NavigationTest: test_/channel.html_should_have_the_proper_content
410
+ -----------------------------------------------------------------
411
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:48:11 -0700
412
+ -----------------------------------------------------------------
413
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
414
+ -----------------------------------------------------------------
415
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:48:11 -0700
416
+ -----------------------------------------------------------------------
417
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content
418
+ -----------------------------------------------------------------------
419
+ --------------------------
420
+ FacebookJsTest: test_truth
421
+ --------------------------
422
+ -----------------------------------------------------------------
423
+ NavigationTest: test_/channel.html_should_have_the_proper_content
424
+ -----------------------------------------------------------------
425
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:52:25 -0700
426
+ -----------------------------------------------------------------
427
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
428
+ -----------------------------------------------------------------
429
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:52:25 -0700
430
+ -----------------------------------------------------------------------
431
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content
432
+ -----------------------------------------------------------------------
433
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.2ms)
434
+ --------------------------
435
+ FacebookJsTest: test_truth
436
+ --------------------------
437
+ -----------------------------------------------------------------
438
+ NavigationTest: test_/channel.html_should_have_the_proper_content
439
+ -----------------------------------------------------------------
440
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:52:53 -0700
441
+ -----------------------------------------------------------------
442
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
443
+ -----------------------------------------------------------------
444
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:52:53 -0700
445
+ -----------------------------------------------------------------------
446
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content
447
+ -----------------------------------------------------------------------
448
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.3ms)
449
+ --------------------------
450
+ FacebookJsTest: test_truth
451
+ --------------------------
452
+ -----------------------------------------------------------------
453
+ NavigationTest: test_/channel.html_should_have_the_proper_content
454
+ -----------------------------------------------------------------
455
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:53:31 -0700
456
+ -----------------------------------------------------------------
457
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
458
+ -----------------------------------------------------------------
459
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:53:31 -0700
460
+ ------------------------------------------------------------
461
+ NavigationTest: test_/channel.html_should_show_proper_locale
462
+ ------------------------------------------------------------
463
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:53:31 -0700
464
+ -----------------------------------------------------------------------
465
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content
466
+ -----------------------------------------------------------------------
467
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.3ms)
468
+ --------------------------
469
+ FacebookJsTest: test_truth
470
+ --------------------------
471
+ -----------------------------------------------------------------
472
+ NavigationTest: test_/channel.html_should_have_the_proper_content
473
+ -----------------------------------------------------------------
474
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:54:17 -0700
475
+ -----------------------------------------------------------------
476
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
477
+ -----------------------------------------------------------------
478
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:54:17 -0700
479
+ ------------------------------------------------------------
480
+ NavigationTest: test_/channel.html_should_show_proper_locale
481
+ ------------------------------------------------------------
482
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:54:17 -0700
483
+ -----------------------------------------------------------------------
484
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content
485
+ -----------------------------------------------------------------------
486
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.3ms)
487
+ --------------------------
488
+ FacebookJsTest: test_truth
489
+ --------------------------
490
+ -----------------------------------------------------------------
491
+ NavigationTest: test_/channel.html_should_have_the_proper_content
492
+ -----------------------------------------------------------------
493
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:55:03 -0700
494
+ -----------------------------------------------------------------
495
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
496
+ -----------------------------------------------------------------
497
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:55:03 -0700
498
+ ------------------------------------------------------------
499
+ NavigationTest: test_/channel.html_should_show_proper_locale
500
+ ------------------------------------------------------------
501
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 19:55:03 -0700
502
+ -----------------------------------------------------------------------
503
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content
504
+ -----------------------------------------------------------------------
505
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.4ms)
506
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
507
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
508
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
509
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
510
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
511
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
512
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.4ms)
513
+ --------------------------
514
+ FacebookJsTest: test_truth
515
+ --------------------------
516
+ -----------------------------------------------------------------
517
+ NavigationTest: test_/channel.html_should_have_the_proper_content
518
+ -----------------------------------------------------------------
519
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:00:14 -0700
520
+ -----------------------------------------------------------------
521
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
522
+ -----------------------------------------------------------------
523
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:00:14 -0700
524
+ ------------------------------------------------------------
525
+ NavigationTest: test_/channel.html_should_show_proper_locale
526
+ ------------------------------------------------------------
527
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:00:14 -0700
528
+ -----------------------------------------------------------------------
529
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content
530
+ -----------------------------------------------------------------------
531
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (4.3ms)
532
+ --------------------------
533
+ FacebookJsTest: test_truth
534
+ --------------------------
535
+ -----------------------------------------------------------------
536
+ NavigationTest: test_/channel.html_should_have_the_proper_content
537
+ -----------------------------------------------------------------
538
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:00:19 -0700
539
+ -----------------------------------------------------------------
540
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
541
+ -----------------------------------------------------------------
542
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:00:19 -0700
543
+ ------------------------------------------------------------
544
+ NavigationTest: test_/channel.html_should_show_proper_locale
545
+ ------------------------------------------------------------
546
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:00:19 -0700
547
+ -----------------------------------------------------------------------
548
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content
549
+ -----------------------------------------------------------------------
550
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.2ms)
551
+ --------------------------
552
+ FacebookJsTest: test_truth
553
+ --------------------------
554
+ -----------------------------------------------------------------
555
+ NavigationTest: test_/channel.html_should_have_the_proper_content
556
+ -----------------------------------------------------------------
557
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:00:40 -0700
558
+ -----------------------------------------------------------------
559
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
560
+ -----------------------------------------------------------------
561
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:00:40 -0700
562
+ ------------------------------------------------------------
563
+ NavigationTest: test_/channel.html_should_show_proper_locale
564
+ ------------------------------------------------------------
565
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:00:40 -0700
566
+ ------------------------------------------------------------------------------------------
567
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
568
+ ------------------------------------------------------------------------------------------
569
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.3ms)
570
+ -------------------------------------------------------------------------------
571
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
572
+ -------------------------------------------------------------------------------
573
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
574
+ --------------------------
575
+ FacebookJsTest: test_truth
576
+ --------------------------
577
+ -----------------------------------------------------------------
578
+ NavigationTest: test_/channel.html_should_have_the_proper_content
579
+ -----------------------------------------------------------------
580
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:41:52 -0700
581
+ -----------------------------------------------------------------
582
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
583
+ -----------------------------------------------------------------
584
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:41:52 -0700
585
+ ------------------------------------------------------------
586
+ NavigationTest: test_/channel.html_should_show_proper_locale
587
+ ------------------------------------------------------------
588
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:41:52 -0700
589
+ ------------------------------------------------------------------------------------------
590
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
591
+ ------------------------------------------------------------------------------------------
592
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.8ms)
593
+ ------------------------------------------------------------------------------------------
594
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
595
+ ------------------------------------------------------------------------------------------
596
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
597
+ -------------------------------------------------------------------------------
598
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
599
+ -------------------------------------------------------------------------------
600
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
601
+ --------------------------
602
+ FacebookJsTest: test_truth
603
+ --------------------------
604
+ -----------------------------------------------------------------
605
+ NavigationTest: test_/channel.html_should_have_the_proper_content
606
+ -----------------------------------------------------------------
607
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:42:50 -0700
608
+ -----------------------------------------------------------------
609
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
610
+ -----------------------------------------------------------------
611
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:42:50 -0700
612
+ ------------------------------------------------------------
613
+ NavigationTest: test_/channel.html_should_show_proper_locale
614
+ ------------------------------------------------------------
615
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:42:50 -0700
616
+ ------------------------------------------------------------------------------------------
617
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
618
+ ------------------------------------------------------------------------------------------
619
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.7ms)
620
+ ------------------------------------------------------------------------------------------
621
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
622
+ ------------------------------------------------------------------------------------------
623
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.4ms)
624
+ -------------------------------------------------------------------------------
625
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
626
+ -------------------------------------------------------------------------------
627
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.4ms)
628
+ --------------------------
629
+ FacebookJsTest: test_truth
630
+ --------------------------
631
+ -----------------------------------------------------------------
632
+ NavigationTest: test_/channel.html_should_have_the_proper_content
633
+ -----------------------------------------------------------------
634
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:43:06 -0700
635
+ -----------------------------------------------------------------
636
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
637
+ -----------------------------------------------------------------
638
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:43:06 -0700
639
+ ------------------------------------------------------------
640
+ NavigationTest: test_/channel.html_should_show_proper_locale
641
+ ------------------------------------------------------------
642
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:43:06 -0700
643
+ ------------------------------------------------------------------------------------------
644
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
645
+ ------------------------------------------------------------------------------------------
646
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.2ms)
647
+ ------------------------------------------------------------------------------------------
648
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
649
+ ------------------------------------------------------------------------------------------
650
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
651
+ -------------------------------------------------------------------------------
652
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
653
+ -------------------------------------------------------------------------------
654
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.4ms)
655
+ --------------------------
656
+ FacebookJsTest: test_truth
657
+ --------------------------
658
+ -----------------------------------------------------------------
659
+ NavigationTest: test_/channel.html_should_have_the_proper_content
660
+ -----------------------------------------------------------------
661
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:43:37 -0700
662
+ -----------------------------------------------------------------
663
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
664
+ -----------------------------------------------------------------
665
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:43:37 -0700
666
+ ------------------------------------------------------------
667
+ NavigationTest: test_/channel.html_should_show_proper_locale
668
+ ------------------------------------------------------------
669
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:43:37 -0700
670
+ ------------------------------------------------------------------------------------------
671
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
672
+ ------------------------------------------------------------------------------------------
673
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.3ms)
674
+ ------------------------------------------------------------------------------------------
675
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
676
+ ------------------------------------------------------------------------------------------
677
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
678
+ -------------------------------------------------------------------------------
679
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
680
+ -------------------------------------------------------------------------------
681
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.4ms)
682
+ --------------------------
683
+ FacebookJsTest: test_truth
684
+ --------------------------
685
+ -----------------------------------------------------------------
686
+ NavigationTest: test_/channel.html_should_have_the_proper_content
687
+ -----------------------------------------------------------------
688
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:44:21 -0700
689
+ -----------------------------------------------------------------
690
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
691
+ -----------------------------------------------------------------
692
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:44:21 -0700
693
+ ------------------------------------------------------------
694
+ NavigationTest: test_/channel.html_should_show_proper_locale
695
+ ------------------------------------------------------------
696
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:44:21 -0700
697
+ ------------------------------------------------------------------------------------------
698
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
699
+ ------------------------------------------------------------------------------------------
700
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.3ms)
701
+ ------------------------------------------------------------------------------------------
702
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
703
+ ------------------------------------------------------------------------------------------
704
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
705
+ -------------------------------------------------------------------------------
706
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
707
+ -------------------------------------------------------------------------------
708
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
709
+ --------------------------
710
+ FacebookJsTest: test_truth
711
+ --------------------------
712
+ -----------------------------------------------------------------
713
+ NavigationTest: test_/channel.html_should_have_the_proper_content
714
+ -----------------------------------------------------------------
715
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:46:22 -0700
716
+ -----------------------------------------------------------------
717
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
718
+ -----------------------------------------------------------------
719
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:46:22 -0700
720
+ ------------------------------------------------------------
721
+ NavigationTest: test_/channel.html_should_show_proper_locale
722
+ ------------------------------------------------------------
723
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:46:22 -0700
724
+ ------------------------------------------------------------------------------------------
725
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
726
+ ------------------------------------------------------------------------------------------
727
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.2ms)
728
+ ------------------------------------------------------------------------------------------
729
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
730
+ ------------------------------------------------------------------------------------------
731
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
732
+ -------------------------------------------------------------------------------
733
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
734
+ -------------------------------------------------------------------------------
735
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
736
+ --------------------------
737
+ FacebookJsTest: test_truth
738
+ --------------------------
739
+ -----------------------------------------------------------------
740
+ NavigationTest: test_/channel.html_should_have_the_proper_content
741
+ -----------------------------------------------------------------
742
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:46:59 -0700
743
+ -----------------------------------------------------------------
744
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
745
+ -----------------------------------------------------------------
746
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:46:59 -0700
747
+ ------------------------------------------------------------
748
+ NavigationTest: test_/channel.html_should_show_proper_locale
749
+ ------------------------------------------------------------
750
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:46:59 -0700
751
+ ------------------------------------------------------------------------------------------
752
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
753
+ ------------------------------------------------------------------------------------------
754
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.2ms)
755
+ ------------------------------------------------------------------------------------------
756
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
757
+ ------------------------------------------------------------------------------------------
758
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
759
+ -------------------------------------------------------------------------------
760
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
761
+ -------------------------------------------------------------------------------
762
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
763
+ --------------------------
764
+ FacebookJsTest: test_truth
765
+ --------------------------
766
+ -----------------------------------------------------------------
767
+ NavigationTest: test_/channel.html_should_have_the_proper_content
768
+ -----------------------------------------------------------------
769
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:47:15 -0700
770
+ -----------------------------------------------------------------
771
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
772
+ -----------------------------------------------------------------
773
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:47:15 -0700
774
+ ------------------------------------------------------------
775
+ NavigationTest: test_/channel.html_should_show_proper_locale
776
+ ------------------------------------------------------------
777
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:47:15 -0700
778
+ ------------------------------------------------------------------------------------------
779
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
780
+ ------------------------------------------------------------------------------------------
781
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.4ms)
782
+ ------------------------------------------------------------------------------------------
783
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
784
+ ------------------------------------------------------------------------------------------
785
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
786
+ -------------------------------------------------------------------------------
787
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
788
+ -------------------------------------------------------------------------------
789
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
790
+ --------------------------
791
+ FacebookJsTest: test_truth
792
+ --------------------------
793
+ -----------------------------------------------------------------
794
+ NavigationTest: test_/channel.html_should_have_the_proper_content
795
+ -----------------------------------------------------------------
796
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:48:08 -0700
797
+ -----------------------------------------------------------------
798
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
799
+ -----------------------------------------------------------------
800
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:48:08 -0700
801
+ ------------------------------------------------------------
802
+ NavigationTest: test_/channel.html_should_show_proper_locale
803
+ ------------------------------------------------------------
804
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:48:08 -0700
805
+ ------------------------------------------------------------------------------------------
806
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
807
+ ------------------------------------------------------------------------------------------
808
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.3ms)
809
+ -----------------------------------------------------------------------------------------
810
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
811
+ -----------------------------------------------------------------------------------------
812
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
813
+ ------------------------------------------------------------------------------------------
814
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
815
+ ------------------------------------------------------------------------------------------
816
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
817
+ -----------------------------------------------------------------------------------------
818
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
819
+ -----------------------------------------------------------------------------------------
820
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.4ms)
821
+ -------------------------------------------------------------------------------
822
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
823
+ -------------------------------------------------------------------------------
824
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
825
+ --------------------------
826
+ FacebookJsTest: test_truth
827
+ --------------------------
828
+ -----------------------------------------------------------------
829
+ NavigationTest: test_/channel.html_should_have_the_proper_content
830
+ -----------------------------------------------------------------
831
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:49:46 -0700
832
+ -----------------------------------------------------------------
833
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
834
+ -----------------------------------------------------------------
835
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:49:46 -0700
836
+ ------------------------------------------------------------
837
+ NavigationTest: test_/channel.html_should_show_proper_locale
838
+ ------------------------------------------------------------
839
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:49:46 -0700
840
+ ------------------------------------------------------------------------------------------
841
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
842
+ ------------------------------------------------------------------------------------------
843
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.2ms)
844
+ -----------------------------------------------------------------------------------------
845
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
846
+ -----------------------------------------------------------------------------------------
847
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
848
+ ------------------------------------------------------------------------------------------
849
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
850
+ ------------------------------------------------------------------------------------------
851
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
852
+ -----------------------------------------------------------------------------------------
853
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
854
+ -----------------------------------------------------------------------------------------
855
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
856
+ -------------------------------------------------------------------------------
857
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
858
+ -------------------------------------------------------------------------------
859
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
860
+ --------------------------
861
+ FacebookJsTest: test_truth
862
+ --------------------------
863
+ -----------------------------------------------------------------
864
+ NavigationTest: test_/channel.html_should_have_the_proper_content
865
+ -----------------------------------------------------------------
866
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:50:09 -0700
867
+ -----------------------------------------------------------------
868
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
869
+ -----------------------------------------------------------------
870
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:50:09 -0700
871
+ ------------------------------------------------------------
872
+ NavigationTest: test_/channel.html_should_show_proper_locale
873
+ ------------------------------------------------------------
874
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:50:09 -0700
875
+ ------------------------------------------------------------------------------------------
876
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
877
+ ------------------------------------------------------------------------------------------
878
+ -----------------------------------------------------------------------------------------
879
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
880
+ -----------------------------------------------------------------------------------------
881
+ ------------------------------------------------------------------------------------------
882
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
883
+ ------------------------------------------------------------------------------------------
884
+ -----------------------------------------------------------------------------------------
885
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
886
+ -----------------------------------------------------------------------------------------
887
+ -------------------------------------------------------------------------------
888
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
889
+ -------------------------------------------------------------------------------
890
+ --------------------------
891
+ FacebookJsTest: test_truth
892
+ --------------------------
893
+ -----------------------------------------------------------------
894
+ NavigationTest: test_/channel.html_should_have_the_proper_content
895
+ -----------------------------------------------------------------
896
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:51:27 -0700
897
+ -----------------------------------------------------------------
898
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
899
+ -----------------------------------------------------------------
900
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:51:27 -0700
901
+ ------------------------------------------------------------
902
+ NavigationTest: test_/channel.html_should_show_proper_locale
903
+ ------------------------------------------------------------
904
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:51:27 -0700
905
+ ------------------------------------------------------------------------------------------
906
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
907
+ ------------------------------------------------------------------------------------------
908
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.2ms)
909
+ -----------------------------------------------------------------------------------------
910
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
911
+ -----------------------------------------------------------------------------------------
912
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
913
+ ------------------------------------------------------------------------------------------
914
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
915
+ ------------------------------------------------------------------------------------------
916
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
917
+ -----------------------------------------------------------------------------------------
918
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
919
+ -----------------------------------------------------------------------------------------
920
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
921
+ -------------------------------------------------------------------------------
922
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
923
+ -------------------------------------------------------------------------------
924
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
925
+ --------------------------
926
+ FacebookJsTest: test_truth
927
+ --------------------------
928
+ -----------------------------------------------------------------
929
+ NavigationTest: test_/channel.html_should_have_the_proper_content
930
+ -----------------------------------------------------------------
931
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:54:36 -0700
932
+ -----------------------------------------------------------------
933
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
934
+ -----------------------------------------------------------------
935
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:54:36 -0700
936
+ ------------------------------------------------------------
937
+ NavigationTest: test_/channel.html_should_show_proper_locale
938
+ ------------------------------------------------------------
939
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:54:36 -0700
940
+ ------------------------------------------------------------------------------------------
941
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
942
+ ------------------------------------------------------------------------------------------
943
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.4ms)
944
+ -----------------------------------------------------------------------------------------
945
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
946
+ -----------------------------------------------------------------------------------------
947
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
948
+ ------------------------------------------------------------------------------------------
949
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
950
+ ------------------------------------------------------------------------------------------
951
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.4ms)
952
+ -----------------------------------------------------------------------------------------
953
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
954
+ -----------------------------------------------------------------------------------------
955
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
956
+ -------------------------------------------------------------------------------
957
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
958
+ -------------------------------------------------------------------------------
959
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
960
+ --------------------------
961
+ FacebookJsTest: test_truth
962
+ --------------------------
963
+ -----------------------------------------------------------------
964
+ NavigationTest: test_/channel.html_should_have_the_proper_content
965
+ -----------------------------------------------------------------
966
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:55:16 -0700
967
+ -----------------------------------------------------------------
968
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
969
+ -----------------------------------------------------------------
970
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:55:16 -0700
971
+ ------------------------------------------------------------
972
+ NavigationTest: test_/channel.html_should_show_proper_locale
973
+ ------------------------------------------------------------
974
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:55:16 -0700
975
+ ------------------------------------------------------------------------------------------
976
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
977
+ ------------------------------------------------------------------------------------------
978
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.3ms)
979
+ -----------------------------------------------------------------------------------------
980
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
981
+ -----------------------------------------------------------------------------------------
982
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
983
+ ------------------------------------------------------------------------------------------
984
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
985
+ ------------------------------------------------------------------------------------------
986
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
987
+ -----------------------------------------------------------------------------------------
988
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
989
+ -----------------------------------------------------------------------------------------
990
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
991
+ -------------------------------------------------------------------------------
992
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
993
+ -------------------------------------------------------------------------------
994
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
995
+ --------------------------
996
+ FacebookJsTest: test_truth
997
+ --------------------------
998
+ -----------------------------------------------------------------
999
+ NavigationTest: test_/channel.html_should_have_the_proper_content
1000
+ -----------------------------------------------------------------
1001
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:56:22 -0700
1002
+ -----------------------------------------------------------------
1003
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
1004
+ -----------------------------------------------------------------
1005
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:56:22 -0700
1006
+ ------------------------------------------------------------
1007
+ NavigationTest: test_/channel.html_should_show_proper_locale
1008
+ ------------------------------------------------------------
1009
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:56:22 -0700
1010
+ ----------------------------------------------------------------------------------
1011
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_block
1012
+ ----------------------------------------------------------------------------------
1013
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.9ms)
1014
+ ------------------------------------------------------------------------------------------
1015
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
1016
+ ------------------------------------------------------------------------------------------
1017
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
1018
+ -----------------------------------------------------------------------------------------
1019
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
1020
+ -----------------------------------------------------------------------------------------
1021
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
1022
+ ------------------------------------------------------------------------------------------
1023
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
1024
+ ------------------------------------------------------------------------------------------
1025
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1026
+ -----------------------------------------------------------------------------------------
1027
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
1028
+ -----------------------------------------------------------------------------------------
1029
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1030
+ -------------------------------------------------------------------------------
1031
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
1032
+ -------------------------------------------------------------------------------
1033
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
1034
+ --------------------------
1035
+ FacebookJsTest: test_truth
1036
+ --------------------------
1037
+ -----------------------------------------------------------------
1038
+ NavigationTest: test_/channel.html_should_have_the_proper_content
1039
+ -----------------------------------------------------------------
1040
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:57:56 -0700
1041
+ -----------------------------------------------------------------
1042
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
1043
+ -----------------------------------------------------------------
1044
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:57:56 -0700
1045
+ ------------------------------------------------------------
1046
+ NavigationTest: test_/channel.html_should_show_proper_locale
1047
+ ------------------------------------------------------------
1048
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:57:56 -0700
1049
+ ----------------------------------------------------------------------------------
1050
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_block
1051
+ ----------------------------------------------------------------------------------
1052
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.8ms)
1053
+ ------------------------------------------------------------------------------------------
1054
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
1055
+ ------------------------------------------------------------------------------------------
1056
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
1057
+ -----------------------------------------------------------------------------------------
1058
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
1059
+ -----------------------------------------------------------------------------------------
1060
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
1061
+ ------------------------------------------------------------------------------------------
1062
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
1063
+ ------------------------------------------------------------------------------------------
1064
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1065
+ -----------------------------------------------------------------------------------------
1066
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
1067
+ -----------------------------------------------------------------------------------------
1068
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1069
+ -------------------------------------------------------------------------------
1070
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
1071
+ -------------------------------------------------------------------------------
1072
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1073
+ --------------------------
1074
+ FacebookJsTest: test_truth
1075
+ --------------------------
1076
+ -----------------------------------------------------------------
1077
+ NavigationTest: test_/channel.html_should_have_the_proper_content
1078
+ -----------------------------------------------------------------
1079
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:58:12 -0700
1080
+ -----------------------------------------------------------------
1081
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
1082
+ -----------------------------------------------------------------
1083
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:58:12 -0700
1084
+ ------------------------------------------------------------
1085
+ NavigationTest: test_/channel.html_should_show_proper_locale
1086
+ ------------------------------------------------------------
1087
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:58:12 -0700
1088
+ ----------------------------------------------------------------------------------
1089
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_block
1090
+ ----------------------------------------------------------------------------------
1091
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.9ms)
1092
+ ------------------------------------------------------------------------------------------
1093
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
1094
+ ------------------------------------------------------------------------------------------
1095
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
1096
+ -----------------------------------------------------------------------------------------
1097
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
1098
+ -----------------------------------------------------------------------------------------
1099
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
1100
+ ------------------------------------------------------------------------------------------
1101
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
1102
+ ------------------------------------------------------------------------------------------
1103
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
1104
+ -----------------------------------------------------------------------------------------
1105
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
1106
+ -----------------------------------------------------------------------------------------
1107
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1108
+ -------------------------------------------------------------------------------
1109
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
1110
+ -------------------------------------------------------------------------------
1111
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
1112
+ --------------------------
1113
+ FacebookJsTest: test_truth
1114
+ --------------------------
1115
+ -----------------------------------------------------------------
1116
+ NavigationTest: test_/channel.html_should_have_the_proper_content
1117
+ -----------------------------------------------------------------
1118
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:58:35 -0700
1119
+ -----------------------------------------------------------------
1120
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
1121
+ -----------------------------------------------------------------
1122
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:58:35 -0700
1123
+ ------------------------------------------------------------
1124
+ NavigationTest: test_/channel.html_should_show_proper_locale
1125
+ ------------------------------------------------------------
1126
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:58:35 -0700
1127
+ ----------------------------------------------------------------------------------
1128
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_block
1129
+ ----------------------------------------------------------------------------------
1130
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (1.1ms)
1131
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
1132
+ ------------------------------------------------------------------------------------------
1133
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
1134
+ ------------------------------------------------------------------------------------------
1135
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.5ms)
1136
+ -----------------------------------------------------------------------------------------
1137
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
1138
+ -----------------------------------------------------------------------------------------
1139
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
1140
+ ------------------------------------------------------------------------------------------
1141
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
1142
+ ------------------------------------------------------------------------------------------
1143
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
1144
+ -----------------------------------------------------------------------------------------
1145
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
1146
+ -----------------------------------------------------------------------------------------
1147
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
1148
+ -------------------------------------------------------------------------------
1149
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
1150
+ -------------------------------------------------------------------------------
1151
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
1152
+ --------------------------
1153
+ FacebookJsTest: test_truth
1154
+ --------------------------
1155
+ -----------------------------------------------------------------
1156
+ NavigationTest: test_/channel.html_should_have_the_proper_content
1157
+ -----------------------------------------------------------------
1158
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:59:53 -0700
1159
+ -----------------------------------------------------------------
1160
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
1161
+ -----------------------------------------------------------------
1162
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:59:53 -0700
1163
+ ------------------------------------------------------------
1164
+ NavigationTest: test_/channel.html_should_show_proper_locale
1165
+ ------------------------------------------------------------
1166
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:59:53 -0700
1167
+ ----------------------------------------------------------------------------------
1168
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_block
1169
+ ----------------------------------------------------------------------------------
1170
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.9ms)
1171
+ ------------------------------------------------------------------------------------------
1172
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
1173
+ ------------------------------------------------------------------------------------------
1174
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.3ms)
1175
+ -----------------------------------------------------------------------------------------
1176
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
1177
+ -----------------------------------------------------------------------------------------
1178
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1179
+ ------------------------------------------------------------------------------------------
1180
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
1181
+ ------------------------------------------------------------------------------------------
1182
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1183
+ -----------------------------------------------------------------------------------------
1184
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
1185
+ -----------------------------------------------------------------------------------------
1186
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1187
+ -------------------------------------------------------------------------------
1188
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
1189
+ -------------------------------------------------------------------------------
1190
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
1191
+ --------------------------
1192
+ FacebookJsTest: test_truth
1193
+ --------------------------
1194
+ -----------------------------------------------------------------
1195
+ NavigationTest: test_/channel.html_should_have_the_proper_content
1196
+ -----------------------------------------------------------------
1197
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:59:57 -0700
1198
+ -----------------------------------------------------------------
1199
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
1200
+ -----------------------------------------------------------------
1201
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:59:57 -0700
1202
+ ------------------------------------------------------------
1203
+ NavigationTest: test_/channel.html_should_show_proper_locale
1204
+ ------------------------------------------------------------
1205
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 20:59:57 -0700
1206
+ ----------------------------------------------------------------------------------
1207
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_block
1208
+ ----------------------------------------------------------------------------------
1209
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (1.0ms)
1210
+ ------------------------------------------------------------------------------------------
1211
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
1212
+ ------------------------------------------------------------------------------------------
1213
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1214
+ -----------------------------------------------------------------------------------------
1215
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
1216
+ -----------------------------------------------------------------------------------------
1217
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1218
+ ------------------------------------------------------------------------------------------
1219
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
1220
+ ------------------------------------------------------------------------------------------
1221
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1222
+ -----------------------------------------------------------------------------------------
1223
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
1224
+ -----------------------------------------------------------------------------------------
1225
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1226
+ -------------------------------------------------------------------------------
1227
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
1228
+ -------------------------------------------------------------------------------
1229
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1230
+ --------------------------
1231
+ FacebookJsTest: test_truth
1232
+ --------------------------
1233
+ -----------------------------------------------------------------
1234
+ NavigationTest: test_/channel.html_should_have_the_proper_content
1235
+ -----------------------------------------------------------------
1236
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:13:04 -0700
1237
+ -----------------------------------------------------------------
1238
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
1239
+ -----------------------------------------------------------------
1240
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:13:04 -0700
1241
+ ------------------------------------------------------------
1242
+ NavigationTest: test_/channel.html_should_show_proper_locale
1243
+ ------------------------------------------------------------
1244
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:13:04 -0700
1245
+ ----------------------------------------------------------------------------------
1246
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_block
1247
+ ----------------------------------------------------------------------------------
1248
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (1.0ms)
1249
+ ------------------------------------------------------------------------------------------
1250
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
1251
+ ------------------------------------------------------------------------------------------
1252
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1253
+ -----------------------------------------------------------------------------------------
1254
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
1255
+ -----------------------------------------------------------------------------------------
1256
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1257
+ ------------------------------------------------------------------------------------------
1258
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
1259
+ ------------------------------------------------------------------------------------------
1260
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1261
+ -----------------------------------------------------------------------------------------
1262
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
1263
+ -----------------------------------------------------------------------------------------
1264
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1265
+ -------------------------------------------------------------------------------
1266
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
1267
+ -------------------------------------------------------------------------------
1268
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1269
+ --------------------------
1270
+ FacebookJsTest: test_truth
1271
+ --------------------------
1272
+ -----------------------------------------------------------------
1273
+ NavigationTest: test_/channel.html_should_have_the_proper_content
1274
+ -----------------------------------------------------------------
1275
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:19:05 -0700
1276
+ -----------------------------------------------------------------
1277
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
1278
+ -----------------------------------------------------------------
1279
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:19:05 -0700
1280
+ ------------------------------------------------------------
1281
+ NavigationTest: test_/channel.html_should_show_proper_locale
1282
+ ------------------------------------------------------------
1283
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:19:05 -0700
1284
+ ----------------------------------------------------------------------------------
1285
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_block
1286
+ ----------------------------------------------------------------------------------
1287
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (1.0ms)
1288
+ ------------------------------------------------------------------------------------------
1289
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
1290
+ ------------------------------------------------------------------------------------------
1291
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1292
+ -----------------------------------------------------------------------------------------
1293
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
1294
+ -----------------------------------------------------------------------------------------
1295
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1296
+ ------------------------------------------------------------------------------------------
1297
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_locale
1298
+ ------------------------------------------------------------------------------------------
1299
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1300
+ ------------------------------------------------------------------------------------------
1301
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
1302
+ ------------------------------------------------------------------------------------------
1303
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1304
+ -----------------------------------------------------------------------------------------
1305
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
1306
+ -----------------------------------------------------------------------------------------
1307
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1308
+ -------------------------------------------------------------------------------
1309
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
1310
+ -------------------------------------------------------------------------------
1311
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1312
+ --------------------------
1313
+ FacebookJsTest: test_truth
1314
+ --------------------------
1315
+ -----------------------------------------------------------------
1316
+ NavigationTest: test_/channel.html_should_have_the_proper_content
1317
+ -----------------------------------------------------------------
1318
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:21:20 -0700
1319
+ -----------------------------------------------------------------
1320
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
1321
+ -----------------------------------------------------------------
1322
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:21:20 -0700
1323
+ ------------------------------------------------------------
1324
+ NavigationTest: test_/channel.html_should_show_proper_locale
1325
+ ------------------------------------------------------------
1326
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:21:20 -0700
1327
+ ----------------------------------------------------------------------------------
1328
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_block
1329
+ ----------------------------------------------------------------------------------
1330
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (1.0ms)
1331
+ ------------------------------------------------------------------------------------------
1332
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
1333
+ ------------------------------------------------------------------------------------------
1334
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1335
+ -----------------------------------------------------------------------------------------
1336
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
1337
+ -----------------------------------------------------------------------------------------
1338
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
1339
+ ------------------------------------------------------------------------------------------
1340
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_locale
1341
+ ------------------------------------------------------------------------------------------
1342
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1343
+ ------------------------------------------------------------------------------------------
1344
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
1345
+ ------------------------------------------------------------------------------------------
1346
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1347
+ -----------------------------------------------------------------------------------------
1348
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
1349
+ -----------------------------------------------------------------------------------------
1350
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1351
+ -------------------------------------------------------------------------------
1352
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
1353
+ -------------------------------------------------------------------------------
1354
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1355
+ --------------------------
1356
+ FacebookJsTest: test_truth
1357
+ --------------------------
1358
+ -----------------------------------------------------------------
1359
+ NavigationTest: test_/channel.html_should_have_the_proper_content
1360
+ -----------------------------------------------------------------
1361
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:27:08 -0700
1362
+ -----------------------------------------------------------------
1363
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
1364
+ -----------------------------------------------------------------
1365
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:27:08 -0700
1366
+ ------------------------------------------------------------
1367
+ NavigationTest: test_/channel.html_should_show_proper_locale
1368
+ ------------------------------------------------------------
1369
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:27:08 -0700
1370
+ ----------------------------------------------------------------------------------
1371
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_block
1372
+ ----------------------------------------------------------------------------------
1373
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.9ms)
1374
+ ------------------------------------------------------------------------------------------
1375
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
1376
+ ------------------------------------------------------------------------------------------
1377
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1378
+ -----------------------------------------------------------------------------------------
1379
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
1380
+ -----------------------------------------------------------------------------------------
1381
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1382
+ ------------------------------------------------------------------------------------------
1383
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_locale
1384
+ ------------------------------------------------------------------------------------------
1385
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1386
+ ------------------------------------------------------------------------------------------
1387
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
1388
+ ------------------------------------------------------------------------------------------
1389
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1390
+ -----------------------------------------------------------------------------------------
1391
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
1392
+ -----------------------------------------------------------------------------------------
1393
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1394
+ -------------------------------------------------------------------------------
1395
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
1396
+ -------------------------------------------------------------------------------
1397
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1398
+ --------------------------
1399
+ FacebookJsTest: test_truth
1400
+ --------------------------
1401
+ -----------------------------------------------------------------
1402
+ NavigationTest: test_/channel.html_should_have_the_proper_content
1403
+ -----------------------------------------------------------------
1404
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:27:29 -0700
1405
+ -----------------------------------------------------------------
1406
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
1407
+ -----------------------------------------------------------------
1408
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:27:29 -0700
1409
+ ------------------------------------------------------------
1410
+ NavigationTest: test_/channel.html_should_show_proper_locale
1411
+ ------------------------------------------------------------
1412
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:27:29 -0700
1413
+ ----------------------------------------------------------------------------------
1414
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_block
1415
+ ----------------------------------------------------------------------------------
1416
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.9ms)
1417
+ ------------------------------------------------------------------------------------------
1418
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
1419
+ ------------------------------------------------------------------------------------------
1420
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1421
+ -----------------------------------------------------------------------------------------
1422
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
1423
+ -----------------------------------------------------------------------------------------
1424
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1425
+ ------------------------------------------------------------------------------------------
1426
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_locale
1427
+ ------------------------------------------------------------------------------------------
1428
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1429
+ ------------------------------------------------------------------------------------------
1430
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
1431
+ ------------------------------------------------------------------------------------------
1432
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1433
+ -----------------------------------------------------------------------------------------
1434
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
1435
+ -----------------------------------------------------------------------------------------
1436
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1437
+ -------------------------------------------------------------------------------
1438
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
1439
+ -------------------------------------------------------------------------------
1440
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1441
+ --------------------------
1442
+ FacebookJsTest: test_truth
1443
+ --------------------------
1444
+ -----------------------------------------------------------------
1445
+ NavigationTest: test_/channel.html_should_have_the_proper_content
1446
+ -----------------------------------------------------------------
1447
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:27:43 -0700
1448
+ -----------------------------------------------------------------
1449
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
1450
+ -----------------------------------------------------------------
1451
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:27:43 -0700
1452
+ ------------------------------------------------------------
1453
+ NavigationTest: test_/channel.html_should_show_proper_locale
1454
+ ------------------------------------------------------------
1455
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:27:43 -0700
1456
+ ----------------------------------------------------------------------------------
1457
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_block
1458
+ ----------------------------------------------------------------------------------
1459
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (2.2ms)
1460
+ ------------------------------------------------------------------------------------------
1461
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_cookie
1462
+ ------------------------------------------------------------------------------------------
1463
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1464
+ -----------------------------------------------------------------------------------------
1465
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_debug
1466
+ -----------------------------------------------------------------------------------------
1467
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1468
+ ------------------------------------------------------------------------------------------
1469
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_locale
1470
+ ------------------------------------------------------------------------------------------
1471
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
1472
+ ------------------------------------------------------------------------------------------
1473
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_status
1474
+ ------------------------------------------------------------------------------------------
1475
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1476
+ -----------------------------------------------------------------------------------------
1477
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_content_with_proper_xfbml
1478
+ -----------------------------------------------------------------------------------------
1479
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.1ms)
1480
+ -------------------------------------------------------------------------------
1481
+ FacebookJsHelperTest: test_facebook_js_should_render_the_proper_default_content
1482
+ -------------------------------------------------------------------------------
1483
+ Rendered /Users/siong1987/Projects/facebook_js/app/views/facebook_js_helper/_facebook.html.erb (0.2ms)
1484
+ --------------------------
1485
+ FacebookJsTest: test_truth
1486
+ --------------------------
1487
+ -----------------------------------------------------------------
1488
+ NavigationTest: test_/channel.html_should_have_the_proper_content
1489
+ -----------------------------------------------------------------
1490
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:29:30 -0700
1491
+ -----------------------------------------------------------------
1492
+ NavigationTest: test_/channel.html_should_have_the_proper_headers
1493
+ -----------------------------------------------------------------
1494
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:29:30 -0700
1495
+ ------------------------------------------------------------
1496
+ NavigationTest: test_/channel.html_should_show_proper_locale
1497
+ ------------------------------------------------------------
1498
+ Started GET "/channel.html" for 127.0.0.1 at 2013-03-17 21:29:30 -0700