contour 2.1.0.beta16 → 2.1.0.beta17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +2 -1
  3. data/app/assets/javascripts/contour.js +1 -1
  4. data/app/assets/javascripts/external/{highcharts-3.0.2.src.js → highcharts-3.0.5.src.js} +1135 -641
  5. data/contour.gemspec +1 -1
  6. data/lib/contour/version.rb +1 -1
  7. data/lib/generators/contour/scaffold/templates/_paginate.html.erb +1 -1
  8. data/lib/generators/contour/scaffold/templates/controller.rb +1 -1
  9. data/lib/generators/contour/scaffold/templates/show.html.erb +2 -2
  10. data/test/dummy/db/test.sqlite3 +0 -0
  11. data/test/dummy/log/test.log +392 -0
  12. data/test/dummy/tmp/cache/assets/test/sprockets/0a38cde2d72ff579969b2cad3683287d +0 -0
  13. data/test/dummy/tmp/cache/assets/test/sprockets/0a9add3e4b179c763a81d057c1237324 +0 -0
  14. data/test/dummy/tmp/cache/assets/test/sprockets/0b793dc498fe65856d1b31a805f114dc +0 -0
  15. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  16. data/test/dummy/tmp/cache/assets/test/sprockets/1a4771f9c62410bd2e9883cbf32c7ab2 +0 -0
  17. data/test/dummy/tmp/cache/assets/test/sprockets/202ee3e470074d921a4ebc990afe1182 +0 -0
  18. data/test/dummy/tmp/cache/assets/test/sprockets/2104a43b6b7d1d60519dc2deb62ae47b +0 -0
  19. data/test/dummy/tmp/cache/assets/test/sprockets/2479163ee9d4e495176d9585da79e9dd +0 -0
  20. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  21. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  22. data/test/dummy/tmp/cache/assets/test/sprockets/408c90980fca5a250881bafa3ef0ca63 +0 -0
  23. data/test/dummy/tmp/cache/assets/test/sprockets/4326df7424da5275c5236fd4615801e8 +0 -0
  24. data/test/dummy/tmp/cache/assets/test/sprockets/4e3cde93d4ff732fa65037906a330288 +0 -0
  25. data/test/dummy/tmp/cache/assets/test/sprockets/6666059cb20313a69e518d351e00eb1f +0 -0
  26. data/test/dummy/tmp/cache/assets/test/sprockets/722eaf6263f7819374cc8215ee7c854b +0 -0
  27. data/test/dummy/tmp/cache/assets/test/sprockets/795f142066419901b557f2d610607b6b +0 -0
  28. data/test/dummy/tmp/cache/assets/test/sprockets/848658619cb4b7da3735feeb70b87d5c +0 -0
  29. data/test/dummy/tmp/cache/assets/test/sprockets/92654af24f38bd4ce2b3e67eac84f17f +0 -0
  30. data/test/dummy/tmp/cache/assets/test/sprockets/a7b222735fc6d94f5713fa8e4c00feec +0 -0
  31. data/test/dummy/tmp/cache/assets/test/sprockets/aebdc1b314bd6ea5185ab5d39bf75d87 +0 -0
  32. data/test/dummy/tmp/cache/assets/test/sprockets/b0d8276a1c6457dcb0798d0f676b1298 +0 -0
  33. data/test/dummy/tmp/cache/assets/test/sprockets/bffe970187601e005684626d70560050 +0 -0
  34. data/test/dummy/tmp/cache/assets/test/sprockets/c62ff8b966094d815ee8799210a70413 +0 -0
  35. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  36. data/test/dummy/tmp/cache/assets/test/sprockets/cffe43e7509735b14b54b6ac19fd08d5 +0 -0
  37. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  38. data/test/dummy/tmp/cache/assets/test/sprockets/e2a43f58b4eed6258f424ad79d34e5c1 +0 -0
  39. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  40. metadata +33 -5
data/contour.gemspec CHANGED
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
27
27
  s.add_dependency 'rails', '~> 4.0.0'
28
28
  s.add_dependency 'jquery-rails', '>= 3.0.4'
29
29
  s.add_dependency 'coffee-rails', '~> 4.0.0'
30
- s.add_dependency 'devise', '~> 3.0.2'
30
+ s.add_dependency 'devise', '~> 3.0.3'
31
31
  s.add_dependency 'omniauth', '~> 1.1.4'
32
32
  s.add_dependency 'omniauth-cas', '~> 1.0.4'
33
33
  s.add_dependency 'omniauth-facebook', '~> 1.4.1'
@@ -3,7 +3,7 @@ module Contour
3
3
  MAJOR = 2
4
4
  MINOR = 1
5
5
  TINY = 0
6
- BUILD = "beta16" # nil, "pre", "rc", "rc2"
6
+ BUILD = "beta17" # nil, "pre", "rc", "rc2"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')
9
9
  end
@@ -1,6 +1,6 @@
1
1
  <%%= render partial: 'contour/layouts/per_page', locals: { type: '<%= resource_name_plural %>', per_page: 20, object_count: @<%= resource_name_plural %>.total_count } %>
2
2
 
3
- <table class="table table-striped table-bordered" style="width:100%">
3
+ <table class="table table-striped">
4
4
  <thead>
5
5
  <tr>
6
6
  <%- columns.each do |column| -%>
@@ -1,6 +1,6 @@
1
1
  class <%= resource_class_name_plural %>Controller < ApplicationController
2
2
  before_action :authenticate_user!
3
- before_action :set_<%= resource_name %>, only: [:show, :edit, :update, :destroy]
3
+ before_action :set_<%= resource_name %>, only: [ :show, :edit, :update, :destroy ]
4
4
 
5
5
  # GET /<%= resource_name_plural %>
6
6
  # GET /<%= resource_name_plural %>.json
@@ -2,9 +2,9 @@
2
2
  <div class="page-header">
3
3
  <h1>
4
4
  <%%= link_to "<%= resource_title_plural %>", <%= resource_name_plural %>_path %> &middot; <%%= @title %>
5
- <%%= link_to "Edit <%= resource_title %>", edit_<%= resource_name %>_path(@<%= resource_name %>), class: 'btn btn-xs btn-default' %>
6
- <%%= link_to "Delete <%= resource_title %>", @<%= resource_name %>, method: :delete, class: 'btn btn-xs btn-danger-inverse', data: { confirm: "Are you sure you want to delete <%= resource_title %> #{@<%= resource_name %>.name}?" } %>
7
5
  </h1>
6
+ <%%= link_to "Edit <%= resource_title %>", edit_<%= resource_name %>_path(@<%= resource_name %>), class: 'btn btn-xs btn-default' %>
7
+ <%%= link_to "Delete <%= resource_title %>", @<%= resource_name %>, method: :delete, class: 'btn btn-xs btn-danger-inverse', data: { confirm: "Are you sure you want to delete <%= resource_title %> #{@<%= resource_name %>.name}?" } %>
8
8
  </div>
9
9
 
10
10
  <dl class="dl-horizontal">
Binary file
@@ -80952,3 +80952,395 @@ UserTest: test_should_get_reverse_name
80952
80952
  --------------------------------------
80953
80953
  User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
80954
80954
   (0.1ms) rollback transaction
80955
+  (0.3ms) begin transaction
80956
+ Fixture Delete (0.2ms) DELETE FROM "authentications"
80957
+ Fixture Insert (0.1ms) INSERT INTO "authentications" ("provider", "uid", "created_at", "updated_at", "id", "user_id") VALUES ('open_id', 'open_id@open_id.com', '2013-08-21 15:40:45', '2013-08-21 15:40:45', 949717663, 201799169)
80958
+ Fixture Insert (0.1ms) INSERT INTO "authentications" ("provider", "uid", "created_at", "updated_at", "id", "user_id") VALUES ('google_apps', 'test@gmail.com', '2013-08-21 15:40:45', '2013-08-21 15:40:45', 876923740, 201799169)
80959
+ Fixture Insert (0.1ms) INSERT INTO "authentications" ("provider", "uid", "created_at", "updated_at", "id", "user_id") VALUES ('ldap', 'CN=ldapid,CN=Users,DC=example,DC=com', '2013-08-21 15:40:45', '2013-08-21 15:40:45', 864673665, 201799169)
80960
+ Fixture Delete (0.1ms) DELETE FROM "users"
80961
+ Fixture Insert (0.1ms) INSERT INTO "users" ("first_name", "last_name", "status", "deleted", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "created_at", "updated_at", "id") VALUES ('FirstName', 'LastName', 'active', 'f', 'valid@example.com', '$2a$10$ZgXIxDCn.TjuCgsnS9iEp.Z1LlmQ71FGKgZe/kdCaVvgvnAAcUaz2', 'ResetTokenOne', 'MyDate', 'MyDate', 0, 'MyDate', 'MyDate', 'MyString', 'MyString', '2013-08-21 15:40:45', '2013-08-21 15:40:45', 201799169)
80962
+ Fixture Insert (0.1ms) INSERT INTO "users" ("first_name", "last_name", "status", "deleted", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'inactive', 'f', 'EmailTwo', 'MyString', 'ResetTokenTwo', 'MyDate', 'MyDate', 0, 'MyDate', 'MyDate', 'MyString', 'MyString', '2013-08-21 15:40:45', '2013-08-21 15:40:45', 999914115)
80963
+ Fixture Insert (0.1ms) INSERT INTO "users" ("first_name", "last_name", "status", "deleted", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "created_at", "updated_at", "id") VALUES ('Deleted', 'User', 'active', 't', 'deleted@example.com', 'MyString', 'ResetTokenFive', 'MyDate', '2011-02-23', 0, '2011-02-23', '2011-02-23', 'MyString', 'MyString', '2013-08-21 15:40:45', '2013-08-21 15:40:45', 725306934)
80964
+ Fixture Insert (0.1ms) INSERT INTO "users" ("first_name", "last_name", "status", "deleted", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'pending', 'f', 'pending@example.com', 'MyString', 'ResetTokenFour', 'MyDate', '2011-02-23', 0, '2011-02-23', '2011-02-23', 'MyString', 'MyString', '2013-08-21 15:40:45', '2013-08-21 15:40:45', 349534908)
80965
+  (2.4ms) commit transaction
80966
+  (0.1ms) begin transaction
80967
+ -------------------------------------------------
80968
+ AuthenticationTest: test_should_get_provider_name
80969
+ -------------------------------------------------
80970
+ Authentication Load (0.2ms) SELECT "authentications".* FROM "authentications" WHERE "authentications"."id" = ? LIMIT 1 [["id", 876923740]]
80971
+  (0.2ms) rollback transaction
80972
+  (0.1ms) begin transaction
80973
+ --------------------------------------------------------------------------------
80974
+ AuthenticationTest: test_should_get_provider_name_and_handle_OpenID_special_case
80975
+ --------------------------------------------------------------------------------
80976
+ Authentication Load (0.2ms) SELECT "authentications".* FROM "authentications" WHERE "authentications"."id" = ? LIMIT 1 [["id", 949717663]]
80977
+  (0.1ms) rollback transaction
80978
+  (0.1ms) begin transaction
80979
+ -------------------------------------------------------------------------
80980
+ Contour::AuthenticationsControllerTest: test_should_create_authentication
80981
+ -------------------------------------------------------------------------
80982
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
80983
+ Authentication Load (0.1ms) SELECT "authentications".* FROM "authentications" WHERE "authentications"."id" = ? LIMIT 1 [["id", 949717663]]
80984
+  (0.1ms) SELECT COUNT(*) FROM "authentications"
80985
+ Processing by Contour::AuthenticationsController#create as HTML
80986
+ Parameters: {"authentication"=>{"id"=>"949717663", "user_id"=>"201799169", "provider"=>"open_id", "uid"=>"open_id@open_id.com", "created_at"=>"2013-08-21 15:40:45 UTC", "updated_at"=>"2013-08-21 15:40:45 UTC"}}
80987
+ Authentication Load (0.1ms) SELECT "authentications".* FROM "authentications" WHERE "authentications"."provider" = 'google_apps' AND "authentications"."uid" = 'test@example.com' LIMIT 1
80988
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 201799169 ORDER BY "users"."id" ASC LIMIT 1
80989
+ Logged in user found, creating associated authentication.
80990
+  (0.1ms) SAVEPOINT active_record_1
80991
+ SQL (0.4ms) INSERT INTO "authentications" ("created_at", "provider", "uid", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 21 Aug 2013 15:40:45 UTC +00:00], ["provider", "google_apps"], ["uid", "test@example.com"], ["updated_at", Wed, 21 Aug 2013 15:40:45 UTC +00:00], ["user_id", 201799169]]
80992
+  (0.1ms) RELEASE SAVEPOINT active_record_1
80993
+ Redirected to http://test.host/authentications
80994
+ Completed 302 Found in 18ms (ActiveRecord: 0.8ms)
80995
+  (0.1ms) SELECT COUNT(*) FROM "authentications"
80996
+  (0.7ms) rollback transaction
80997
+  (0.1ms) begin transaction
80998
+ --------------------------------------------------------------------------
80999
+ Contour::AuthenticationsControllerTest: test_should_destroy_authentication
81000
+ --------------------------------------------------------------------------
81001
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
81002
+ Authentication Load (0.0ms) SELECT "authentications".* FROM "authentications" WHERE "authentications"."id" = ? LIMIT 1 [["id", 949717663]]
81003
+  (0.1ms) SELECT COUNT(*) FROM "authentications"
81004
+ Processing by Contour::AuthenticationsController#destroy as HTML
81005
+ Parameters: {"id"=>"949717663"}
81006
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 201799169 ORDER BY "users"."id" ASC LIMIT 1
81007
+ Authentication Load (0.1ms) SELECT "authentications".* FROM "authentications" WHERE "authentications"."user_id" = ? AND "authentications"."id" = ? LIMIT 1 [["user_id", 201799169], ["id", "949717663"]]
81008
+  (0.1ms) SAVEPOINT active_record_1
81009
+ SQL (0.3ms) DELETE FROM "authentications" WHERE "authentications"."id" = ? [["id", 949717663]]
81010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
81011
+ Redirected to http://test.host/authentications
81012
+ Completed 302 Found in 4ms (ActiveRecord: 0.6ms)
81013
+  (0.1ms) SELECT COUNT(*) FROM "authentications"
81014
+  (0.7ms) rollback transaction
81015
+  (0.1ms) begin transaction
81016
+ -------------------------------------------------------------
81017
+ Contour::AuthenticationsControllerTest: test_should_get_index
81018
+ -------------------------------------------------------------
81019
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
81020
+ Authentication Load (0.0ms) SELECT "authentications".* FROM "authentications" WHERE "authentications"."id" = ? LIMIT 1 [["id", 949717663]]
81021
+ Processing by Contour::AuthenticationsController#index as HTML
81022
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 201799169 ORDER BY "users"."id" ASC LIMIT 1
81023
+ Authentication Exists (0.2ms) SELECT 1 AS one FROM "authentications" WHERE "authentications"."user_id" = ? LIMIT 1 [["user_id", 201799169]]
81024
+ Authentication Load (0.1ms) SELECT "authentications".* FROM "authentications" WHERE "authentications"."user_id" = ? [["user_id", 201799169]]
81025
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/authentications/_index.html.erb (10.2ms)
81026
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_menu.html.erb (3.6ms)
81027
+ Completed 200 OK in 274ms (Views: 271.5ms | ActiveRecord: 0.5ms)
81028
+  (0.1ms) rollback transaction
81029
+  (0.1ms) begin transaction
81030
+ -----------------------------------------------------------------------------
81031
+ Contour::PasswordsControllerTest: test_should_be_able_to_request_new_password
81032
+ -----------------------------------------------------------------------------
81033
+ Processing by Contour::PasswordsController#create as HTML
81034
+ Parameters: {"user"=>{"email"=>"valid@example.com"}}
81035
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'valid@example.com' LIMIT 1
81036
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = 'kDmAywXw8sik1N2qH81Z' LIMIT 1
81037
+  (0.0ms) SAVEPOINT active_record_1
81038
+ SQL (0.4ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = 201799169 [["reset_password_token", "kDmAywXw8sik1N2qH81Z"], ["reset_password_sent_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00], ["updated_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00]]
81039
+  (0.1ms) RELEASE SAVEPOINT active_record_1
81040
+
81041
+ Sent mail to valid@example.com (14.3ms)
81042
+ Date: Wed, 21 Aug 2013 11:40:46 -0400
81043
+ From: please-change-me-at-config-initializers-devise@example.com
81044
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
81045
+ To: valid@example.com
81046
+ Message-ID: <5214df7e3540d_a1a53fdb954606d0723f6@edge2.partners.org.mail>
81047
+ Subject: Reset password instructions
81048
+ Mime-Version: 1.0
81049
+ Content-Type: text/html;
81050
+ charset=UTF-8
81051
+ Content-Transfer-Encoding: 7bit
81052
+
81053
+ <p>Hello valid@example.com!</p>
81054
+
81055
+ <p>Someone has requested a link to change your password. You can do this through the link below.</p>
81056
+
81057
+ <p><a href="http://localhost:3000/users/password/edit?reset_password_token=kDmAywXw8sik1N2qH81Z">Change my password</a></p>
81058
+
81059
+ <p>If you didn't request this, please ignore this email.</p>
81060
+ <p>Your password won't change until you access the link above and create a new one.</p>
81061
+
81062
+ Redirected to http://test.host/users/login
81063
+ Completed 302 Found in 112ms (ActiveRecord: 0.8ms)
81064
+  (0.8ms) rollback transaction
81065
+  (0.1ms) begin transaction
81066
+ -----------------------------------------------------------------------------
81067
+ Contour::PasswordsControllerTest: test_should_be_able_to_view_forget_password
81068
+ -----------------------------------------------------------------------------
81069
+ Processing by Contour::PasswordsController#new as HTML
81070
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/_links.html.erb (1.8ms)
81071
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/authentications/_menu.html.erb (7.5ms)
81072
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_menu.html.erb (10.5ms)
81073
+ Completed 200 OK in 57ms (Views: 56.1ms | ActiveRecord: 0.0ms)
81074
+  (0.1ms) rollback transaction
81075
+  (0.1ms) begin transaction
81076
+ -------------------------------------------------------------------------------
81077
+ Contour::RegistrationsControllerTest: test_a_new_user_should_be_able_to_sign_up
81078
+ -------------------------------------------------------------------------------
81079
+  (0.2ms) SELECT COUNT(*) FROM "users"
81080
+ Processing by Contour::RegistrationsController#create as HTML
81081
+ Parameters: {"user"=>{"first_name"=>"First Name", "last_name"=>"Last Name", "email"=>"new_user@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "spam"=>""}}
81082
+ Unpermitted parameters: spam
81083
+  (0.1ms) SAVEPOINT active_record_1
81084
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'new_user@example.com' LIMIT 1
81085
+ Binary data inserted for `string` type on column `encrypted_password`
81086
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00], ["email", "new_user@example.com"], ["encrypted_password", "$2a$04$FOgIA6gUBgLX6EFAgdcHPu4mXjIkNX3R71G6.1YokVLhzfEypw0Wq"], ["first_name", "First Name"], ["last_name", "Last Name"], ["updated_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00]]
81087
+  (0.1ms) RELEASE SAVEPOINT active_record_1
81088
+ Redirected to http://test.host/users/login
81089
+ Completed 302 Found in 29ms (ActiveRecord: 1.0ms)
81090
+  (0.1ms) SELECT COUNT(*) FROM "users"
81091
+  (0.8ms) rollback transaction
81092
+  (0.1ms) begin transaction
81093
+ --------------------------------------------------------------------------------------------
81094
+ Contour::RegistrationsControllerTest: test_a_new_user_should_not_be_able_to_set_their_status
81095
+ --------------------------------------------------------------------------------------------
81096
+  (0.1ms) SELECT COUNT(*) FROM "users"
81097
+ Processing by Contour::RegistrationsController#create as HTML
81098
+ Parameters: {"user"=>{"first_name"=>"First Name", "last_name"=>"Last Name", "status"=>"active", "email"=>"new_registration@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}}
81099
+ Unpermitted parameters: status
81100
+  (0.1ms) SAVEPOINT active_record_1
81101
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'new_registration@example.com' LIMIT 1
81102
+ Binary data inserted for `string` type on column `encrypted_password`
81103
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00], ["email", "new_registration@example.com"], ["encrypted_password", "$2a$04$36uwOupjb5XEPdN1DF9O3e3R2yEOMfl6twcgaodaTaBJuKbZ2CkgK"], ["first_name", "First Name"], ["last_name", "Last Name"], ["updated_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00]]
81104
+  (0.1ms) RELEASE SAVEPOINT active_record_1
81105
+ Redirected to http://test.host/users/login
81106
+ Completed 302 Found in 8ms (ActiveRecord: 0.7ms)
81107
+  (0.1ms) SELECT COUNT(*) FROM "users"
81108
+  (0.8ms) rollback transaction
81109
+  (0.1ms) begin transaction
81110
+ ---------------------------------------------------------------------------------------------
81111
+ Contour::RegistrationsControllerTest: test_a_submitter_spam_bot_should_not_be_able_to_sign_up
81112
+ ---------------------------------------------------------------------------------------------
81113
+  (0.1ms) SELECT COUNT(*) FROM "users"
81114
+ Processing by Contour::RegistrationsController#create as HTML
81115
+ Parameters: {"user"=>{"first_name"=>"First Name", "last_name"=>"Last Name", "email"=>"new_user@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "spam"=>"http://buystuffhere.com"}}
81116
+ SPAM BOT SIGNUP: {"user"=>{"first_name"=>"First Name", "last_name"=>"Last Name", "email"=>"new_user@example.com", "password"=>"password", "password_confirmation"=>"password", "spam"=>"http://buystuffhere.com"}, "controller"=>"contour/registrations", "action"=>"create"}
81117
+ Unpermitted parameters: spam
81118
+ Redirected to http://test.host/users/login
81119
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
81120
+  (0.1ms) SELECT COUNT(*) FROM "users"
81121
+  (0.1ms) rollback transaction
81122
+  (0.1ms) begin transaction
81123
+ ----------------------------------------------------------------------
81124
+ Contour::SessionsControllerTest: test_return_user_json_object_on_login
81125
+ ----------------------------------------------------------------------
81126
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
81127
+ Processing by Contour::SessionsController#create as JSON
81128
+ Parameters: {"user"=>{"email"=>"valid@example.com", "password"=>"[FILTERED]"}}
81129
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'valid@example.com' LIMIT 1
81130
+  (0.1ms) SAVEPOINT active_record_1
81131
+ SQL (0.4ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 201799169 [["last_sign_in_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00], ["current_sign_in_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00]]
81132
+  (0.1ms) RELEASE SAVEPOINT active_record_1
81133
+ Completed 200 OK in 78ms (Views: 0.3ms | ActiveRecord: 0.8ms)
81134
+  (0.7ms) rollback transaction
81135
+  (0.1ms) begin transaction
81136
+ ----------------------------------------------------------------------------------------------------------
81137
+ Contour::SessionsControllerTest: test_should_do_a_graceful_redirect_to_google_apps_through_secondary_email
81138
+ ----------------------------------------------------------------------------------------------------------
81139
+ Processing by Contour::SessionsController#create as HTML
81140
+ Parameters: {"user"=>{"email"=>"test@gmail.com", "password"=>"[FILTERED]"}}
81141
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@gmail.com' LIMIT 1
81142
+  (0.1ms) SELECT "authentications"."provider" FROM "authentications" WHERE "authentications"."uid" = 'test@gmail.com'
81143
+ Redirected to http://test.host/auth/google_apps
81144
+ Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
81145
+  (0.1ms) rollback transaction
81146
+  (0.1ms) begin transaction
81147
+ ----------------------------------------------------------------------------------------------
81148
+ Contour::SessionsControllerTest: test_should_do_a_graceful_redirect_to_ldap_with_primary_email
81149
+ ----------------------------------------------------------------------------------------------
81150
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
81151
+ Processing by Contour::SessionsController#create as HTML
81152
+ Parameters: {"user"=>{"email"=>"valid@example.com", "password"=>"[FILTERED]"}}
81153
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'valid@example.com' LIMIT 1
81154
+  (0.1ms) SELECT "authentications"."provider" FROM "authentications" WHERE "authentications"."user_id" = ? [["user_id", 201799169]]
81155
+ Redirected to http://test.host/auth/ldap
81156
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
81157
+  (0.1ms) rollback transaction
81158
+  (0.1ms) begin transaction
81159
+ --------------------------------------------------------------------------
81160
+ Contour::SessionsControllerTest: test_should_not_login_invalid_credentials
81161
+ --------------------------------------------------------------------------
81162
+ Processing by Contour::SessionsController#create as HTML
81163
+ Parameters: {"user"=>{"email"=>"", "password"=>"[FILTERED]"}}
81164
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = '' LIMIT 1
81165
+  (0.1ms) SELECT "authentications"."provider" FROM "authentications" WHERE "authentications"."uid" = ''
81166
+ Completed 401 Unauthorized in 3ms
81167
+ Processing by Contour::SessionsController#new as HTML
81168
+ Parameters: {"user"=>{"email"=>"", "password"=>"[FILTERED]"}}
81169
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/_links.html.erb (0.9ms)
81170
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_latest_news.html.erb (0.7ms)
81171
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/authentications/_menu.html.erb (1.3ms)
81172
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_menu.html.erb (2.9ms)
81173
+ Completed 200 OK in 37ms (Views: 36.1ms | ActiveRecord: 0.0ms)
81174
+  (0.2ms) rollback transaction
81175
+  (0.1ms) begin transaction
81176
+ -----------------------------------------------------
81177
+ ContourHelperTest: test_should_show_sort_field_helper
81178
+ -----------------------------------------------------
81179
+  (0.1ms) rollback transaction
81180
+  (0.1ms) begin transaction
81181
+ ---------------------------------------------------------------------
81182
+ ContourHelperTest: test_should_show_sort_field_helper_with_same_order
81183
+ ---------------------------------------------------------------------
81184
+  (0.1ms) rollback transaction
81185
+  (0.1ms) begin transaction
81186
+ -----------------------
81187
+ ContourTest: test_truth
81188
+ -----------------------
81189
+  (0.1ms) rollback transaction
81190
+  (0.0ms) begin transaction
81191
+ --------------------------------------------------------------------
81192
+ NavigationTest: test_deleted_users_should_be_not_be_allowed_to_login
81193
+ --------------------------------------------------------------------
81194
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
81195
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 349534908]]
81196
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 725306934]]
81197
+ Started GET "/logged_in_page" for 127.0.0.1 at 2013-08-21 11:40:46 -0400
81198
+ Processing by WelcomeController#logged_in_page as HTML
81199
+ Completed 401 Unauthorized in 21ms
81200
+  (0.1ms) SAVEPOINT active_record_1
81201
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'deleted-2@example.com' LIMIT 1
81202
+ Binary data inserted for `string` type on column `encrypted_password`
81203
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00], ["email", "deleted-2@example.com"], ["encrypted_password", "$2a$04$w5XxygUd38B60JTUZXuJT.K.XFIoJUYhDzqIejgZYv/xo1ejgAzN."], ["first_name", "Deleted"], ["last_name", "User"], ["updated_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00]]
81204
+  (0.1ms) RELEASE SAVEPOINT active_record_1
81205
+  (0.0ms) SAVEPOINT active_record_1
81206
+ Authentication Exists (0.1ms) SELECT 1 AS one FROM "authentications" WHERE "authentications"."user_id" = ? LIMIT 1 [["user_id", 999914116]]
81207
+ Authentication Exists (0.0ms) SELECT 1 AS one FROM "authentications" WHERE "authentications"."user_id" = ? LIMIT 1 [["user_id", 999914116]]
81208
+  (0.0ms) RELEASE SAVEPOINT active_record_1
81209
+ SQL (0.3ms) UPDATE "users" SET "status" = 'active' WHERE "users"."id" = 999914116
81210
+ SQL (0.1ms) UPDATE "users" SET "deleted" = 't' WHERE "users"."id" = 999914116
81211
+ Started POST "/users/login" for 127.0.0.1 at 2013-08-21 11:40:46 -0400
81212
+ Processing by Contour::SessionsController#create as HTML
81213
+ Parameters: {"user"=>{"email"=>"deleted-2@example.com", "password"=>"[FILTERED]"}}
81214
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'deleted-2@example.com' LIMIT 1
81215
+  (0.2ms) SAVEPOINT active_record_1
81216
+  (0.1ms) RELEASE SAVEPOINT active_record_1
81217
+ Completed 401 Unauthorized in 18ms
81218
+ Started GET "/users/login" for 127.0.0.1 at 2013-08-21 11:40:46 -0400
81219
+ Processing by Contour::SessionsController#new as HTML
81220
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/_links.html.erb (0.4ms)
81221
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_latest_news.html.erb (0.1ms)
81222
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/authentications/_menu.html.erb (1.2ms)
81223
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_menu.html.erb (2.6ms)
81224
+ Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.0ms)
81225
+  (0.8ms) rollback transaction
81226
+  (0.1ms) begin transaction
81227
+ --------------------------------------------------------
81228
+ NavigationTest: test_friendly_url_forwarding_after_login
81229
+ --------------------------------------------------------
81230
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
81231
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 349534908]]
81232
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 725306934]]
81233
+ Started GET "/logged_in_page" for 127.0.0.1 at 2013-08-21 11:40:46 -0400
81234
+ Processing by WelcomeController#logged_in_page as HTML
81235
+ Completed 401 Unauthorized in 1ms
81236
+  (0.1ms) SAVEPOINT active_record_1
81237
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'valid-2@example.com' LIMIT 1
81238
+ Binary data inserted for `string` type on column `encrypted_password`
81239
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00], ["email", "valid-2@example.com"], ["encrypted_password", "$2a$04$Yzp13H0NG1M8TNOc14om2OgEVrnz2jhpr.Qgu4T1Tyzl1LQcwlDS6"], ["first_name", "FirstName"], ["last_name", "LastName"], ["updated_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00]]
81240
+  (0.1ms) RELEASE SAVEPOINT active_record_1
81241
+  (0.0ms) SAVEPOINT active_record_1
81242
+ Authentication Exists (0.1ms) SELECT 1 AS one FROM "authentications" WHERE "authentications"."user_id" = ? LIMIT 1 [["user_id", 999914116]]
81243
+ Authentication Exists (0.0ms) SELECT 1 AS one FROM "authentications" WHERE "authentications"."user_id" = ? LIMIT 1 [["user_id", 999914116]]
81244
+  (0.0ms) RELEASE SAVEPOINT active_record_1
81245
+ SQL (0.3ms) UPDATE "users" SET "status" = 'active' WHERE "users"."id" = 999914116
81246
+ SQL (0.1ms) UPDATE "users" SET "deleted" = 'f' WHERE "users"."id" = 999914116
81247
+ Started POST "/users/login" for 127.0.0.1 at 2013-08-21 11:40:46 -0400
81248
+ Processing by Contour::SessionsController#create as HTML
81249
+ Parameters: {"user"=>{"email"=>"valid-2@example.com", "password"=>"[FILTERED]"}}
81250
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'valid-2@example.com' LIMIT 1
81251
+  (0.1ms) SAVEPOINT active_record_1
81252
+ SQL (0.2ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 999914116 [["last_sign_in_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00], ["current_sign_in_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00]]
81253
+  (0.0ms) RELEASE SAVEPOINT active_record_1
81254
+ Redirected to http://www.example.com/logged_in_page
81255
+ Completed 302 Found in 9ms (ActiveRecord: 0.5ms)
81256
+ Started GET "/logged_in_page" for 127.0.0.1 at 2013-08-21 11:40:46 -0400
81257
+ Processing by WelcomeController#logged_in_page as HTML
81258
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 999914116 ORDER BY "users"."id" ASC LIMIT 1
81259
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms)
81260
+  (0.6ms) rollback transaction
81261
+  (0.1ms) begin transaction
81262
+ --------------------------------------------------------------------
81263
+ NavigationTest: test_pending_users_should_be_not_be_allowed_to_login
81264
+ --------------------------------------------------------------------
81265
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
81266
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 349534908]]
81267
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 725306934]]
81268
+ Started GET "/logged_in_page" for 127.0.0.1 at 2013-08-21 11:40:46 -0400
81269
+ Processing by WelcomeController#logged_in_page as HTML
81270
+ Completed 401 Unauthorized in 1ms
81271
+  (0.1ms) SAVEPOINT active_record_1
81272
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'pending-2@example.com' LIMIT 1
81273
+ Binary data inserted for `string` type on column `encrypted_password`
81274
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00], ["email", "pending-2@example.com"], ["encrypted_password", "$2a$04$T3xCyxR484Y7DM5z/.OiKueHZ5Tmfoy7y6nByCXfQtsulocPz1uVa"], ["first_name", "MyString"], ["last_name", "MyString"], ["updated_at", Wed, 21 Aug 2013 15:40:46 UTC +00:00]]
81275
+  (0.1ms) RELEASE SAVEPOINT active_record_1
81276
+  (0.0ms) SAVEPOINT active_record_1
81277
+ Authentication Exists (0.1ms) SELECT 1 AS one FROM "authentications" WHERE "authentications"."user_id" = ? LIMIT 1 [["user_id", 999914116]]
81278
+ Authentication Exists (0.0ms) SELECT 1 AS one FROM "authentications" WHERE "authentications"."user_id" = ? LIMIT 1 [["user_id", 999914116]]
81279
+  (0.0ms) RELEASE SAVEPOINT active_record_1
81280
+ SQL (0.2ms) UPDATE "users" SET "status" = 'pending' WHERE "users"."id" = 999914116
81281
+ SQL (0.1ms) UPDATE "users" SET "deleted" = 'f' WHERE "users"."id" = 999914116
81282
+ Started POST "/users/login" for 127.0.0.1 at 2013-08-21 11:40:46 -0400
81283
+ Processing by Contour::SessionsController#create as HTML
81284
+ Parameters: {"user"=>{"email"=>"pending-2@example.com", "password"=>"[FILTERED]"}}
81285
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'pending-2@example.com' LIMIT 1
81286
+  (0.1ms) SAVEPOINT active_record_1
81287
+  (0.1ms) RELEASE SAVEPOINT active_record_1
81288
+ Completed 401 Unauthorized in 8ms
81289
+ Started GET "/users/login" for 127.0.0.1 at 2013-08-21 11:40:47 -0400
81290
+ Processing by Contour::SessionsController#new as HTML
81291
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/_links.html.erb (0.8ms)
81292
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_latest_news.html.erb (0.1ms)
81293
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/authentications/_menu.html.erb (1.3ms)
81294
+ Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_menu.html.erb (2.7ms)
81295
+ Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.0ms)
81296
+  (0.9ms) rollback transaction
81297
+  (0.1ms) begin transaction
81298
+ -------------------------------------------------------------
81299
+ NavigationTest: test_root_navigation_redirected_to_login_page
81300
+ -------------------------------------------------------------
81301
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
81302
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 349534908]]
81303
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 725306934]]
81304
+ Started GET "/" for 127.0.0.1 at 2013-08-21 11:40:47 -0400
81305
+ Processing by WelcomeController#index as HTML
81306
+ Completed 401 Unauthorized in 1ms
81307
+  (0.1ms) rollback transaction
81308
+  (0.0ms) begin transaction
81309
+ -------------------------------------------------------------------------
81310
+ NavigationTest: test_valid_users_should_be_able_to_login_using_basic_http
81311
+ -------------------------------------------------------------------------
81312
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
81313
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 349534908]]
81314
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 725306934]]
81315
+ Started GET "/logged_in_page.json" for 127.0.0.1 at 2013-08-21 11:40:47 -0400
81316
+ Processing by WelcomeController#logged_in_page as JSON
81317
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'valid@example.com' LIMIT 1
81318
+  (0.1ms) SAVEPOINT active_record_1
81319
+ SQL (0.4ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 201799169 [["last_sign_in_at", Wed, 21 Aug 2013 15:40:47 UTC +00:00], ["current_sign_in_at", Wed, 21 Aug 2013 15:40:47 UTC +00:00], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", Wed, 21 Aug 2013 15:40:47 UTC +00:00]]
81320
+  (0.0ms) RELEASE SAVEPOINT active_record_1
81321
+ Completed 200 OK in 85ms (Views: 0.2ms | ActiveRecord: 0.6ms)
81322
+  (0.7ms) rollback transaction
81323
+  (0.1ms) begin transaction
81324
+ ------------------------------------------------------------------------------------------------
81325
+ NavigationTest: test_valid_users_should_not_be_able_to_login_using_basic_http_and_wrong_password
81326
+ ------------------------------------------------------------------------------------------------
81327
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
81328
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 349534908]]
81329
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 725306934]]
81330
+ Started GET "/logged_in_page.json" for 127.0.0.1 at 2013-08-21 11:40:47 -0400
81331
+ Processing by WelcomeController#logged_in_page as JSON
81332
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'valid@example.com' LIMIT 1
81333
+ Completed 401 Unauthorized in 78ms
81334
+  (0.1ms) rollback transaction
81335
+  (0.1ms) begin transaction
81336
+ ------------------------------------
81337
+ UserTest: test_should_apply_omniauth
81338
+ ------------------------------------
81339
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
81340
+  (0.1ms) rollback transaction
81341
+  (0.1ms) begin transaction
81342
+ --------------------------------------
81343
+ UserTest: test_should_get_reverse_name
81344
+ --------------------------------------
81345
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
81346
+  (0.1ms) rollback transaction