ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", :environment], ["LIMIT", 1]]  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "test"], ["created_at", 2016-07-28 15:23:13 UTC], ["updated_at", 2016-07-28 15:23:13 UTC]]  (0.6ms) COMMIT ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]  (116.0ms) DROP DATABASE IF EXISTS "dummy_test"  (239.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'  (3.8ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)  (2.1ms) CREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  (0.1ms) SELECT pg_try_advisory_lock(2735718569030447490); ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePushTypeUsers (20160728152318)  (0.1ms) BEGIN SQL (1.8ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"  (2.6ms) CREATE TABLE "push_type_users" ("id" uuid DEFAULT uuid_generate_v4() PRIMARY KEY, "name" character varying, "email" character varying, "field_store" jsonb, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20160728152318"]]  (0.6ms) COMMIT Migrating to CreatePushTypeNodes (20160728152319)  (0.1ms) BEGIN  (2.3ms) CREATE TABLE "push_type_nodes" ("id" uuid DEFAULT uuid_generate_v4() PRIMARY KEY, "type" character varying, "title" character varying, "slug" character varying, "field_store" jsonb, "parent_id" uuid, "sort_order" integer, "status" integer, "published_at" timestamp, "published_to" timestamp, "creator_id" uuid, "updater_id" uuid, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "deleted_at" timestamp) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20160728152319"]]  (0.4ms) COMMIT Migrating to CreatePushTypeNodeHierarchies (20160728152320)  (0.1ms) BEGIN  (0.7ms) CREATE TABLE "push_type_node_hierarchies" ("ancestor_id" uuid NOT NULL, "descendant_id" uuid NOT NULL, "generations" integer NOT NULL)  (0.9ms) CREATE UNIQUE INDEX "node_anc_desc_idx" ON "push_type_node_hierarchies" ("ancestor_id", "descendant_id", "generations")  (0.6ms) CREATE INDEX "node_desc_idx" ON "push_type_node_hierarchies" ("descendant_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20160728152320"]]  (0.3ms) COMMIT Migrating to CreatePushTypeAssets (20160728152321)  (0.1ms) BEGIN  (2.0ms) CREATE TABLE "push_type_assets" ("id" uuid DEFAULT uuid_generate_v4() PRIMARY KEY, "file_uid" character varying, "file_name" character varying, "file_size" integer, "file_ext" character varying, "mime_type" character varying, "description" character varying, "uploader_id" uuid, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "deleted_at" timestamp) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20160728152321"]]  (0.5ms) COMMIT Migrating to AddFieldStoreDefaultValues (20160728152322)  (0.1ms) BEGIN  (0.2ms) ALTER TABLE "push_type_nodes" ALTER COLUMN "field_store" TYPE jsonb  (0.2ms) ALTER TABLE "push_type_nodes" ALTER COLUMN "field_store" SET DEFAULT '{}'  (0.2ms) UPDATE "push_type_nodes" SET "field_store"='{}' WHERE "field_store" IS NULL  (0.1ms) ALTER TABLE "push_type_nodes" ALTER "field_store" SET NOT NULL  (0.2ms) ALTER TABLE "push_type_users" ALTER COLUMN "field_store" TYPE jsonb  (0.2ms) ALTER TABLE "push_type_users" ALTER COLUMN "field_store" SET DEFAULT '{}'  (0.2ms) UPDATE "push_type_users" SET "field_store"='{}' WHERE "field_store" IS NULL  (0.1ms) ALTER TABLE "push_type_users" ALTER "field_store" SET NOT NULL SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20160728152322"]]  (0.4ms) COMMIT Migrating to DropLegacyPushTypeTaxonomies (20160728152323)  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20160728152323"]]  (0.4ms) COMMIT Migrating to DeviseExtendPushTypeUsers (20160728152324)  (0.1ms) BEGIN  (2.9ms) ALTER TABLE "push_type_users" ADD "encrypted_password" character varying DEFAULT '' NOT NULL  (0.2ms) ALTER TABLE "push_type_users" ADD "reset_password_token" character varying  (0.2ms) ALTER TABLE "push_type_users" ADD "reset_password_sent_at" timestamp  (0.2ms) ALTER TABLE "push_type_users" ADD "remember_created_at" timestamp  (2.4ms) ALTER TABLE "push_type_users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL  (0.2ms) ALTER TABLE "push_type_users" ADD "current_sign_in_at" timestamp  (0.1ms) ALTER TABLE "push_type_users" ADD "last_sign_in_at" timestamp  (0.1ms) ALTER TABLE "push_type_users" ADD "current_sign_in_ip" character varying  (0.1ms) ALTER TABLE "push_type_users" ADD "last_sign_in_ip" character varying  (0.1ms) ALTER TABLE "push_type_users" ADD "confirmation_token" character varying  (0.1ms) ALTER TABLE "push_type_users" ADD "confirmed_at" timestamp  (0.1ms) ALTER TABLE "push_type_users" ADD "confirmation_sent_at" timestamp  (0.5ms) CREATE UNIQUE INDEX "index_push_type_users_on_email" ON "push_type_users" ("email")  (0.5ms) CREATE UNIQUE INDEX "index_push_type_users_on_reset_password_token" ON "push_type_users" ("reset_password_token") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20160728152324"]]  (1.2ms) COMMIT ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", :environment], ["LIMIT", 1]]  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "test"], ["created_at", 2016-07-28 15:23:20 UTC], ["updated_at", 2016-07-28 15:23:20 UTC]]  (0.4ms) COMMIT  (0.1ms) SELECT pg_advisory_unlock(2735718569030447490) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete FROM pg_constraint c JOIN pg_class t1 ON c.conrelid = t1.oid JOIN pg_class t2 ON c.confrelid = t2.oid JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid JOIN pg_namespace t3 ON c.connamespace = t3.oid WHERE c.contype = 'f' AND t1.relname = 'push_type_assets' AND t3.nspname = ANY (current_schemas(false)) ORDER BY c.conname   (1.2ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete FROM pg_constraint c JOIN pg_class t1 ON c.conrelid = t1.oid JOIN pg_class t2 ON c.confrelid = t2.oid JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid JOIN pg_namespace t3 ON c.connamespace = t3.oid WHERE c.contype = 'f' AND t1.relname = 'push_type_node_hierarchies' AND t3.nspname = ANY (current_schemas(false)) ORDER BY c.conname   (1.2ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete FROM pg_constraint c JOIN pg_class t1 ON c.conrelid = t1.oid JOIN pg_class t2 ON c.confrelid = t2.oid JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid JOIN pg_namespace t3 ON c.connamespace = t3.oid WHERE c.contype = 'f' AND t1.relname = 'push_type_nodes' AND t3.nspname = ANY (current_schemas(false)) ORDER BY c.conname   (1.2ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete FROM pg_constraint c JOIN pg_class t1 ON c.conrelid = t1.oid JOIN pg_class t2 ON c.confrelid = t2.oid JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid JOIN pg_namespace t3 ON c.connamespace = t3.oid WHERE c.contype = 'f' AND t1.relname = 'push_type_users' AND t3.nspname = ANY (current_schemas(false)) ORDER BY c.conname  ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Creating scope :published. Overwriting existing method PushType::Node.published.  (0.1ms) BEGIN  (0.3ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "ar_internal_metadata" DISABLE TRIGGER ALL;ALTER TABLE "push_type_nodes" DISABLE TRIGGER ALL;ALTER TABLE "push_type_node_hierarchies" DISABLE TRIGGER ALL;ALTER TABLE "push_type_assets" DISABLE TRIGGER ALL;ALTER TABLE "push_type_users" DISABLE TRIGGER ALL  (0.1ms) COMMIT  (0.9ms)  SELECT schemaname || '.' || tablename FROM pg_tables WHERE tablename !~ '_prt_' AND tablename <> 'schema_migrations' AND schemaname = ANY (current_schemas(false))   (0.9ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (9.0ms) TRUNCATE TABLE "public"."ar_internal_metadata", "public"."push_type_nodes", "public"."push_type_node_hierarchies", "public"."push_type_assets", "public"."push_type_users" RESTART IDENTITY CASCADE;  (0.1ms) BEGIN  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "ar_internal_metadata" ENABLE TRIGGER ALL;ALTER TABLE "push_type_node_hierarchies" ENABLE TRIGGER ALL;ALTER TABLE "push_type_assets" ENABLE TRIGGER ALL;ALTER TABLE "push_type_users" ENABLE TRIGGER ALL;ALTER TABLE "push_type_nodes" ENABLE TRIGGER ALL  (0.1ms) COMMIT  (0.1ms) BEGIN --------------------------------------------------------------- PushType::AuthenticatableTest::validatable: test_0001_anonymous ---------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------------------------------------------- PushType::AuthenticatableTest::validatable: test_0002_anonymous ---------------------------------------------------------------  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ----------------------------------------------------------------------------------- PushType::ProfilesControllerTest::PUT #update::with valid user: test_0003_anonymous -----------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.5ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-1@example.com"], ["LIMIT", 1]] PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-1@example.com"], ["LIMIT", 1]] SQL (0.7ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmed_at", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-1@example.com"], ["created_at", 2016-07-28 15:23:24 UTC], ["updated_at", 2016-07-28 15:23:24 UTC], ["confirmation_token", "Generated account"], ["confirmed_at", 2016-07-28 15:23:24 UTC], ["confirmation_sent_at", 2016-07-28 15:23:24 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ProfilesController#update as HTML Parameters: {"user"=>{"name"=>"Test user ABC"}} PushType::User Load (0.4ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["id", "df39990c-da11-4799-bc18-641262230016"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.3ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 AND ("push_type_users"."id" != $2) LIMIT $3 [["email", "joe-1@example.com"], ["id", "df39990c-da11-4799-bc18-641262230016"], ["LIMIT", 1]] SQL (0.3ms) UPDATE "push_type_users" SET "name" = $1, "updated_at" = $2 WHERE "push_type_users"."id" = $3 [["name", "Test user ABC"], ["updated_at", 2016-07-28 15:23:24 UTC], ["id", "df39990c-da11-4799-bc18-641262230016"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Redirected to http://test.host/push_type/profile/edit Completed 302 Found in 18ms (ActiveRecord: 1.3ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ----------------------------------------------------------------------------------- PushType::ProfilesControllerTest::PUT #update::with valid user: test_0001_anonymous -----------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-2@example.com"], ["LIMIT", 1]] PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-2@example.com"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmed_at", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-2@example.com"], ["created_at", 2016-07-28 15:23:24 UTC], ["updated_at", 2016-07-28 15:23:24 UTC], ["confirmation_token", "Generated account"], ["confirmed_at", 2016-07-28 15:23:24 UTC], ["confirmation_sent_at", 2016-07-28 15:23:24 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ProfilesController#update as HTML Parameters: {"user"=>{"name"=>"Test user ABC"}} PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["id", "7beb3808-b1d5-4f73-b3c5-f71b2e14ef4e"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 AND ("push_type_users"."id" != $2) LIMIT $3 [["email", "joe-2@example.com"], ["id", "7beb3808-b1d5-4f73-b3c5-f71b2e14ef4e"], ["LIMIT", 1]] SQL (0.2ms) UPDATE "push_type_users" SET "name" = $1, "updated_at" = $2 WHERE "push_type_users"."id" = $3 [["name", "Test user ABC"], ["updated_at", 2016-07-28 15:23:24 UTC], ["id", "7beb3808-b1d5-4f73-b3c5-f71b2e14ef4e"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Redirected to http://test.host/push_type/profile/edit Completed 302 Found in 5ms (ActiveRecord: 0.8ms) PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 LIMIT $2 [["id", "7beb3808-b1d5-4f73-b3c5-f71b2e14ef4e"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ----------------------------------------------------------------------------------- PushType::ProfilesControllerTest::PUT #update::with valid user: test_0002_anonymous -----------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-3@example.com"], ["LIMIT", 1]] PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-3@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmed_at", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-3@example.com"], ["created_at", 2016-07-28 15:23:24 UTC], ["updated_at", 2016-07-28 15:23:24 UTC], ["confirmation_token", "Generated account"], ["confirmed_at", 2016-07-28 15:23:24 UTC], ["confirmation_sent_at", 2016-07-28 15:23:24 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ProfilesController#update as HTML Parameters: {"user"=>{"name"=>"Test user ABC"}} PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["id", "c7c0cf06-8dca-4a22-92e1-c17dc0259bc0"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 AND ("push_type_users"."id" != $2) LIMIT $3 [["email", "joe-3@example.com"], ["id", "c7c0cf06-8dca-4a22-92e1-c17dc0259bc0"], ["LIMIT", 1]] SQL (0.2ms) UPDATE "push_type_users" SET "name" = $1, "updated_at" = $2 WHERE "push_type_users"."id" = $3 [["name", "Test user ABC"], ["updated_at", 2016-07-28 15:23:24 UTC], ["id", "c7c0cf06-8dca-4a22-92e1-c17dc0259bc0"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Redirected to http://test.host/push_type/profile/edit Completed 302 Found in 4ms (ActiveRecord: 0.7ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ------------------------------------------------------------------------------------------ PushType::ConfirmationsControllerTest::PUT #update::with invalid user: test_0003_anonymous ------------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-4@example.com"], ["LIMIT", 1]] PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-4@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-4@example.com"], ["created_at", 2016-07-28 15:23:24 UTC], ["updated_at", 2016-07-28 15:23:24 UTC], ["confirmation_token", "J99MDzYtKJzB2a9wuoqE"], ["confirmation_sent_at", 2016-07-28 15:23:24 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (2.1ms) DEPRECATION WARNING on line 78 of /Users/aaron/.rvm/gems/ruby-2.3.0@push_type/gems/foundation-rails-5.5.3.2/vendor/assets/stylesheets/foundation/components/_top-bar.scss: #{} interpolation near operators will be simplified in a future version of Sass. To preserve the current behavior, use quotes: unquote("#{lower-bound($medium-range)}") Devise::Mailer#confirmation_instructions: processed outbound mail in 12775.4ms Sent mail to joe-4@example.com (9.7ms) Date: Thu, 28 Jul 2016 16:23:37 +0100 From: pushtype@example.com Reply-To: pushtype@example.com To: joe-4@example.com Message-ID: <579a2379ab965_92fd3fe72183f9e4700d4@Aarons-iMac.local.mail> Subject: [PushType] Confirm your account Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_579a2379aa527_92fd3fe72183f9e4699ec"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_579a2379aa527_92fd3fe72183f9e4699ec Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit PushType ( http://localhost:3000/push_type/ ) Hello Joe Bloggs You're receiving this email because a PushType account has been created for you. To get started, confirm your account and set your own password by clicking the link below: Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=J99MDzYtKJzB2a9wuoqE ) PushType CMS: www.pushtype.org ( http://www.pushtype.org ). ----==_mimepart_579a2379aa527_92fd3fe72183f9e4699ec Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit [PushType] Confirm your account

Hello Joe Bloggs

You're receiving this email because a PushType account has been created for you.

To get started, confirm your account and set your own password by clicking the link below:

Confirm my account

----==_mimepart_579a2379aa527_92fd3fe72183f9e4699ec-- Processing by PushType::ConfirmationsController#update as HTML Parameters: {"user"=>{"confirmation_token"=>"J99MDzYtKJzB2a9wuoqE", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}} PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["confirmation_token", "J99MDzYtKJzB2a9wuoqE"], ["LIMIT", 1]] PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 AND ("push_type_users"."id" != $2) LIMIT $3 [["email", "joe-4@example.com"], ["id", "78c34eab-65b5-4254-9120-65baec914ede"], ["LIMIT", 1]] Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/show.html.haml within layouts/push_type/auth Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/shared/_links.html.erb (1.0ms) Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/show.html.haml within layouts/push_type/auth (14.9ms) Completed 200 OK in 30ms (Views: 25.6ms | ActiveRecord: 0.4ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.3ms) ROLLBACK  (0.1ms) BEGIN ------------------------------------------------------------------------------------------ PushType::ConfirmationsControllerTest::PUT #update::with invalid user: test_0002_anonymous ------------------------------------------------------------------------------------------  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-5@example.com"], ["LIMIT", 1]] PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-5@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-5@example.com"], ["created_at", 2016-07-28 15:23:37 UTC], ["updated_at", 2016-07-28 15:23:37 UTC], ["confirmation_token", "XsaXNbUET5XhPCTmGRU-"], ["confirmation_sent_at", 2016-07-28 15:23:37 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.3ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.7ms Sent mail to joe-5@example.com (3.7ms) Date: Thu, 28 Jul 2016 16:23:37 +0100 From: pushtype@example.com Reply-To: pushtype@example.com To: joe-5@example.com Message-ID: <579a2379be070_92fd3fe72183f9e470366@Aarons-iMac.local.mail> Subject: [PushType] Confirm your account Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_579a2379bdbeb_92fd3fe72183f9e4702d9"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_579a2379bdbeb_92fd3fe72183f9e4702d9 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit PushType ( http://localhost:3000/push_type/ ) Hello Joe Bloggs You're receiving this email because a PushType account has been created for you. To get started, confirm your account and set your own password by clicking the link below: Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=XsaXNbUET5XhPCTmGRU- ) PushType CMS: www.pushtype.org ( http://www.pushtype.org ). ----==_mimepart_579a2379bdbeb_92fd3fe72183f9e4702d9 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit [PushType] Confirm your account

Hello Joe Bloggs

You're receiving this email because a PushType account has been created for you.

To get started, confirm your account and set your own password by clicking the link below:

Confirm my account

----==_mimepart_579a2379bdbeb_92fd3fe72183f9e4702d9-- Processing by PushType::ConfirmationsController#update as HTML Parameters: {"user"=>{"confirmation_token"=>"XsaXNbUET5XhPCTmGRU-", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}} PushType::User Load (0.3ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["confirmation_token", "XsaXNbUET5XhPCTmGRU-"], ["LIMIT", 1]] PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 AND ("push_type_users"."id" != $2) LIMIT $3 [["email", "joe-5@example.com"], ["id", "11880430-b5ae-45a2-975d-a74150412d45"], ["LIMIT", 1]] Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/show.html.haml within layouts/push_type/auth Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/shared/_links.html.erb (0.4ms) Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/show.html.haml within layouts/push_type/auth (2.0ms) Completed 200 OK in 9ms (Views: 6.3ms | ActiveRecord: 0.5ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ------------------------------------------------------------------------------------------ PushType::ConfirmationsControllerTest::PUT #update::with invalid user: test_0001_anonymous ------------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-6@example.com"], ["LIMIT", 1]] PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-6@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-6@example.com"], ["created_at", 2016-07-28 15:23:37 UTC], ["updated_at", 2016-07-28 15:23:37 UTC], ["confirmation_token", "5kzZCKrThX6_8ouPMpvU"], ["confirmation_sent_at", 2016-07-28 15:23:37 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.3ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.6ms Sent mail to joe-6@example.com (3.5ms) Date: Thu, 28 Jul 2016 16:23:37 +0100 From: pushtype@example.com Reply-To: pushtype@example.com To: joe-6@example.com Message-ID: <579a2379cb21e_92fd3fe72183f9e47066d@Aarons-iMac.local.mail> Subject: [PushType] Confirm your account Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_579a2379cadb1_92fd3fe72183f9e47055"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_579a2379cadb1_92fd3fe72183f9e47055 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit PushType ( http://localhost:3000/push_type/ ) Hello Joe Bloggs You're receiving this email because a PushType account has been created for you. To get started, confirm your account and set your own password by clicking the link below: Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=5kzZCKrThX6_8ouPMpvU ) PushType CMS: www.pushtype.org ( http://www.pushtype.org ). ----==_mimepart_579a2379cadb1_92fd3fe72183f9e47055 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit [PushType] Confirm your account

Hello Joe Bloggs

You're receiving this email because a PushType account has been created for you.

To get started, confirm your account and set your own password by clicking the link below:

Confirm my account

----==_mimepart_579a2379cadb1_92fd3fe72183f9e47055-- Processing by PushType::ConfirmationsController#update as HTML Parameters: {"user"=>{"confirmation_token"=>"5kzZCKrThX6_8ouPMpvU", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}} PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["confirmation_token", "5kzZCKrThX6_8ouPMpvU"], ["LIMIT", 1]] PushType::User Exists (0.3ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 AND ("push_type_users"."id" != $2) LIMIT $3 [["email", "joe-6@example.com"], ["id", "000f9584-e902-4218-aac1-e17448e79e51"], ["LIMIT", 1]] Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/show.html.haml within layouts/push_type/auth Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/shared/_links.html.erb (0.3ms) Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/show.html.haml within layouts/push_type/auth (1.7ms) Completed 200 OK in 9ms (Views: 5.8ms | ActiveRecord: 0.6ms)  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------------------------------------------- PushType::AuthenticatableTest::recoverable: test_0001_anonymous ---------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.0ms) BEGIN ---------------------------------------------------------------- PushType::AuthenticatableTest::rememberable: test_0001_anonymous ----------------------------------------------------------------  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------------------------------------------- PushType::AuthenticatableTest::confirmable: test_0001_anonymous ---------------------------------------------------------------  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN -------------------------------------------------------------------------------------------------------------- PushType::AuthenticatableTest::#password_required?::with existing user and dirty password: test_0001_anonymous --------------------------------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-7@example.com"], ["LIMIT", 1]] PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-7@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-7@example.com"], ["created_at", 2016-07-28 15:23:37 UTC], ["updated_at", 2016-07-28 15:23:37 UTC], ["confirmation_token", "UZbEqVwvzybwTDXxBP3W"], ["confirmation_sent_at", 2016-07-28 15:23:37 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.3ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.7ms Sent mail to joe-7@example.com (3.6ms) Date: Thu, 28 Jul 2016 16:23:37 +0100 From: pushtype@example.com Reply-To: pushtype@example.com To: joe-7@example.com Message-ID: <579a2379d94e6_92fd3fe72183f9e470976@Aarons-iMac.local.mail> Subject: [PushType] Confirm your account Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_579a2379d9046_92fd3fe72183f9e470884"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_579a2379d9046_92fd3fe72183f9e470884 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit PushType ( http://localhost:3000/push_type/ ) Hello Joe Bloggs You're receiving this email because a PushType account has been created for you. To get started, confirm your account and set your own password by clicking the link below: Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=UZbEqVwvzybwTDXxBP3W ) PushType CMS: www.pushtype.org ( http://www.pushtype.org ). ----==_mimepart_579a2379d9046_92fd3fe72183f9e470884 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit [PushType] Confirm your account

Hello Joe Bloggs

You're receiving this email because a PushType account has been created for you.

To get started, confirm your account and set your own password by clicking the link below:

Confirm my account

----==_mimepart_579a2379d9046_92fd3fe72183f9e470884--  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------------------------------------------- PushType::UsersControllerTest::PUT #invite: test_0001_anonymous ---------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-8@example.com"], ["LIMIT", 1]] PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-8@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmed_at", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-8@example.com"], ["created_at", 2016-07-28 15:23:37 UTC], ["updated_at", 2016-07-28 15:23:37 UTC], ["confirmation_token", "Generated account"], ["confirmed_at", 2016-07-28 15:23:37 UTC], ["confirmation_sent_at", 2016-07-28 15:23:37 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-9@example.com"], ["LIMIT", 1]] PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-9@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-9@example.com"], ["created_at", 2016-07-28 15:23:37 UTC], ["updated_at", 2016-07-28 15:23:37 UTC], ["confirmation_token", "zwzzr4WdKKTaj4ddDK15"], ["confirmation_sent_at", 2016-07-28 15:23:37 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.3ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.6ms Sent mail to joe-9@example.com (3.6ms) Date: Thu, 28 Jul 2016 16:23:37 +0100 From: pushtype@example.com Reply-To: pushtype@example.com To: joe-9@example.com Message-ID: <579a2379e75c1_92fd3fe72183f9e47124e@Aarons-iMac.local.mail> Subject: [PushType] Confirm your account Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_579a2379e711d_92fd3fe72183f9e4711f8"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_579a2379e711d_92fd3fe72183f9e4711f8 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit PushType ( http://localhost:3000/push_type/ ) Hello Joe Bloggs You're receiving this email because a PushType account has been created for you. To get started, confirm your account and set your own password by clicking the link below: Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=zwzzr4WdKKTaj4ddDK15 ) PushType CMS: www.pushtype.org ( http://www.pushtype.org ). ----==_mimepart_579a2379e711d_92fd3fe72183f9e4711f8 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit [PushType] Confirm your account

Hello Joe Bloggs

You're receiving this email because a PushType account has been created for you.

To get started, confirm your account and set your own password by clicking the link below:

Confirm my account

----==_mimepart_579a2379e711d_92fd3fe72183f9e4711f8-- Processing by PushType::UsersController#invite as HTML Parameters: {"id"=>"062233ec-f5d0-4bab-9102-569ad3f6d613"} PushType::User Load (0.3ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["id", "ab49810d-1365-40ef-b8fa-1e8914fc22fd"], ["LIMIT", 1]] PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["id", "062233ec-f5d0-4bab-9102-569ad3f6d613"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_2  (0.1ms) RELEASE SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.3ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.9ms Sent mail to joe-9@example.com (3.4ms) Date: Thu, 28 Jul 2016 16:23:37 +0100 From: pushtype@example.com Reply-To: pushtype@example.com To: joe-9@example.com Message-ID: <579a2379f13ba_92fd3fe72183f9e471568@Aarons-iMac.local.mail> Subject: [PushType] Confirm your account Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_579a2379f0f86_92fd3fe72183f9e471476"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_579a2379f0f86_92fd3fe72183f9e471476 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit PushType ( http://localhost:3000/push_type/ ) Hello Joe Bloggs You're receiving this email because a PushType account has been created for you. To get started, confirm your account and set your own password by clicking the link below: Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=zwzzr4WdKKTaj4ddDK15 ) PushType CMS: www.pushtype.org ( http://www.pushtype.org ). ----==_mimepart_579a2379f0f86_92fd3fe72183f9e471476 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit [PushType] Confirm your account

Hello Joe Bloggs

You're receiving this email because a PushType account has been created for you.

To get started, confirm your account and set your own password by clicking the link below:

Confirm my account

----==_mimepart_579a2379f0f86_92fd3fe72183f9e471476-- Redirected to http://test.host/push_type/users Completed 302 Found in 39ms (ActiveRecord: 0.6ms)  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------------------------------------------- PushType::UsersControllerTest::PUT #invite: test_0003_anonymous ---------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-10@example.com"], ["LIMIT", 1]] PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-10@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmed_at", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-10@example.com"], ["created_at", 2016-07-28 15:23:37 UTC], ["updated_at", 2016-07-28 15:23:37 UTC], ["confirmation_token", "Generated account"], ["confirmed_at", 2016-07-28 15:23:37 UTC], ["confirmation_sent_at", 2016-07-28 15:23:37 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-11@example.com"], ["LIMIT", 1]] PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-11@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-11@example.com"], ["created_at", 2016-07-28 15:23:37 UTC], ["updated_at", 2016-07-28 15:23:37 UTC], ["confirmation_token", "Dehg_hBsCJnAPcyLJrvU"], ["confirmation_sent_at", 2016-07-28 15:23:37 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.3ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.5ms Sent mail to joe-11@example.com (3.4ms) Date: Thu, 28 Jul 2016 16:23:38 +0100 From: pushtype@example.com Reply-To: pushtype@example.com To: joe-11@example.com Message-ID: <579a237a79ac_92fd3fe72183f9e4718d9@Aarons-iMac.local.mail> Subject: [PushType] Confirm your account Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_579a237a7559_92fd3fe72183f9e4717dc"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_579a237a7559_92fd3fe72183f9e4717dc Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit PushType ( http://localhost:3000/push_type/ ) Hello Joe Bloggs You're receiving this email because a PushType account has been created for you. To get started, confirm your account and set your own password by clicking the link below: Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=Dehg_hBsCJnAPcyLJrvU ) PushType CMS: www.pushtype.org ( http://www.pushtype.org ). ----==_mimepart_579a237a7559_92fd3fe72183f9e4717dc Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit [PushType] Confirm your account

Hello Joe Bloggs

You're receiving this email because a PushType account has been created for you.

To get started, confirm your account and set your own password by clicking the link below:

Confirm my account

----==_mimepart_579a237a7559_92fd3fe72183f9e4717dc-- Processing by PushType::UsersController#invite as HTML Parameters: {"id"=>"8ea20d8e-ff17-474f-9850-d4ebdfe83217"} PushType::User Load (0.3ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["id", "10d58078-7212-4c5a-a19c-a122f6abf797"], ["LIMIT", 1]] PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["id", "8ea20d8e-ff17-474f-9850-d4ebdfe83217"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_2  (0.1ms) RELEASE SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.2ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.6ms Sent mail to joe-11@example.com (3.7ms) Date: Thu, 28 Jul 2016 16:23:38 +0100 From: pushtype@example.com Reply-To: pushtype@example.com To: joe-11@example.com Message-ID: <579a237a11485_92fd3fe72183f9e472187@Aarons-iMac.local.mail> Subject: [PushType] Confirm your account Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_579a237a11038_92fd3fe72183f9e4720fe"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_579a237a11038_92fd3fe72183f9e4720fe Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit PushType ( http://localhost:3000/push_type/ ) Hello Joe Bloggs You're receiving this email because a PushType account has been created for you. To get started, confirm your account and set your own password by clicking the link below: Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=Dehg_hBsCJnAPcyLJrvU ) PushType CMS: www.pushtype.org ( http://www.pushtype.org ). ----==_mimepart_579a237a11038_92fd3fe72183f9e4720fe Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit [PushType] Confirm your account

Hello Joe Bloggs

You're receiving this email because a PushType account has been created for you.

To get started, confirm your account and set your own password by clicking the link below:

Confirm my account

----==_mimepart_579a237a11038_92fd3fe72183f9e4720fe-- Redirected to http://test.host/push_type/users Completed 302 Found in 40ms (ActiveRecord: 0.6ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------------------------------------------- PushType::UsersControllerTest::PUT #invite: test_0002_anonymous ---------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-12@example.com"], ["LIMIT", 1]] PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-12@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmed_at", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-12@example.com"], ["created_at", 2016-07-28 15:23:38 UTC], ["updated_at", 2016-07-28 15:23:38 UTC], ["confirmation_token", "Generated account"], ["confirmed_at", 2016-07-28 15:23:38 UTC], ["confirmation_sent_at", 2016-07-28 15:23:38 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-13@example.com"], ["LIMIT", 1]] PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-13@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-13@example.com"], ["created_at", 2016-07-28 15:23:38 UTC], ["updated_at", 2016-07-28 15:23:38 UTC], ["confirmation_token", "B3-3UzjYNVw-zEzZTyn9"], ["confirmation_sent_at", 2016-07-28 15:23:38 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.3ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.7ms Sent mail to joe-13@example.com (4.0ms) Date: Thu, 28 Jul 2016 16:23:38 +0100 From: pushtype@example.com Reply-To: pushtype@example.com To: joe-13@example.com Message-ID: <579a237a1ede2_92fd3fe72183f9e472479@Aarons-iMac.local.mail> Subject: [PushType] Confirm your account Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_579a237a1e8a6_92fd3fe72183f9e47233e"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_579a237a1e8a6_92fd3fe72183f9e47233e Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit PushType ( http://localhost:3000/push_type/ ) Hello Joe Bloggs You're receiving this email because a PushType account has been created for you. To get started, confirm your account and set your own password by clicking the link below: Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=B3-3UzjYNVw-zEzZTyn9 ) PushType CMS: www.pushtype.org ( http://www.pushtype.org ). ----==_mimepart_579a237a1e8a6_92fd3fe72183f9e47233e Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit [PushType] Confirm your account

Hello Joe Bloggs

You're receiving this email because a PushType account has been created for you.

To get started, confirm your account and set your own password by clicking the link below:

Confirm my account

----==_mimepart_579a237a1e8a6_92fd3fe72183f9e47233e-- Processing by PushType::UsersController#invite as HTML Parameters: {"id"=>"785b5cdc-df5c-4798-9bfa-b4b4cd3bde97"} PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["id", "22eaffac-b4c2-4e19-90be-9e7e3e4de76f"], ["LIMIT", 1]] PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["id", "785b5cdc-df5c-4798-9bfa-b4b4cd3bde97"], ["LIMIT", 1]]  (0.2ms) SAVEPOINT active_record_2  (0.1ms) RELEASE SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.2ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.8ms Sent mail to joe-13@example.com (3.5ms) Date: Thu, 28 Jul 2016 16:23:38 +0100 From: pushtype@example.com Reply-To: pushtype@example.com To: joe-13@example.com Message-ID: <579a237a2accb_92fd3fe72183f9e472778@Aarons-iMac.local.mail> Subject: [PushType] Confirm your account Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_579a237a2a876_92fd3fe72183f9e472692"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_579a237a2a876_92fd3fe72183f9e472692 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit PushType ( http://localhost:3000/push_type/ ) Hello Joe Bloggs You're receiving this email because a PushType account has been created for you. To get started, confirm your account and set your own password by clicking the link below: Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=B3-3UzjYNVw-zEzZTyn9 ) PushType CMS: www.pushtype.org ( http://www.pushtype.org ). ----==_mimepart_579a237a2a876_92fd3fe72183f9e472692 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit [PushType] Confirm your account

Hello Joe Bloggs

You're receiving this email because a PushType account has been created for you.

To get started, confirm your account and set your own password by clicking the link below:

Confirm my account

----==_mimepart_579a237a2a876_92fd3fe72183f9e472692-- Redirected to http://test.host/push_type/users Completed 302 Found in 48ms (ActiveRecord: 0.5ms)  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ---------------------------------------------------------------- PushType::ProfilesControllerTest::GET #edit: test_0001_anonymous ----------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-14@example.com"], ["LIMIT", 1]] PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-14@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmed_at", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-14@example.com"], ["created_at", 2016-07-28 15:23:38 UTC], ["updated_at", 2016-07-28 15:23:38 UTC], ["confirmation_token", "Generated account"], ["confirmed_at", 2016-07-28 15:23:38 UTC], ["confirmation_sent_at", 2016-07-28 15:23:38 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ProfilesController#edit as HTML PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["id", "3485b01e-bf0b-479a-bc90-2113c67889bb"], ["LIMIT", 1]] Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/profiles/edit.html.haml within layouts/push_type/admin Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/profiles/edit.html.haml within layouts/push_type/admin (7.3ms) Completed 200 OK in 24ms (Views: 18.5ms | ActiveRecord: 0.1ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ---------------------------------------------------------------- PushType::ProfilesControllerTest::GET #edit: test_0002_anonymous ----------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-15@example.com"], ["LIMIT", 1]] PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-15@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmed_at", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-15@example.com"], ["created_at", 2016-07-28 15:23:38 UTC], ["updated_at", 2016-07-28 15:23:38 UTC], ["confirmation_token", "Generated account"], ["confirmed_at", 2016-07-28 15:23:38 UTC], ["confirmation_sent_at", 2016-07-28 15:23:38 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ProfilesController#edit as HTML PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["id", "c4bb01db-184f-4126-8b50-89466f72092f"], ["LIMIT", 1]] Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/profiles/edit.html.haml within layouts/push_type/admin Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/profiles/edit.html.haml within layouts/push_type/admin (1.7ms) Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.2ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------------------------------------------------------- PushType::AuthenticatableTest::database_athenticatable: test_0001_anonymous ---------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.0ms) ROLLBACK  (0.1ms) BEGIN --------------------------------------------------------------------------- PushType::AuthenticatableTest::database_athenticatable: test_0002_anonymous ---------------------------------------------------------------------------  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ------------------------------------------------------------- PushType::AuthenticatableTest::trackable: test_0001_anonymous -------------------------------------------------------------  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ---------------------------------------------------- PushType::InvitationMethodsTest: test_0001_anonymous ----------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.0ms) ROLLBACK  (0.1ms) BEGIN -------------------------------------------------------------------------------------- PushType::AuthenticatableTest::#password_required?::with new user: test_0001_anonymous --------------------------------------------------------------------------------------  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.0ms) ROLLBACK  (0.1ms) BEGIN -------------------------------------------------------- PushType::AuthenticationMethodsTest: test_0001_anonymous --------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.0ms) ROLLBACK  (0.1ms) BEGIN -------------------------------------------------------- PushType::AuthenticationMethodsTest: test_0002_anonymous --------------------------------------------------------  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.0ms) ROLLBACK  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------ PushType::ConfirmationsControllerTest::GET #show::with invalid confirmation token: test_0001_anonymous ------------------------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Processing by PushType::ConfirmationsController#show as HTML Parameters: {"confirmation_token"=>"invalid"} PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["confirmation_token", "invalid"], ["LIMIT", 1]] PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["confirmation_token", "invalid"], ["LIMIT", 1]] PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["confirmation_token", "3e850e283f2206a00c652b3600029aa8f55a199a5fb482bb364dae0943d96245"], ["LIMIT", 1]] Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/new.html.haml within layouts/push_type/auth Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/shared/_links.html.erb (0.3ms) Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/new.html.haml within layouts/push_type/auth (2.9ms) Completed 200 OK in 184ms (Views: 11.1ms | ActiveRecord: 0.5ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------ PushType::ConfirmationsControllerTest::GET #show::with invalid confirmation token: test_0002_anonymous ------------------------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Processing by PushType::ConfirmationsController#show as HTML Parameters: {"confirmation_token"=>"invalid"} PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["confirmation_token", "invalid"], ["LIMIT", 1]] PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["confirmation_token", "invalid"], ["LIMIT", 1]] PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["confirmation_token", "3e850e283f2206a00c652b3600029aa8f55a199a5fb482bb364dae0943d96245"], ["LIMIT", 1]] Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/new.html.haml within layouts/push_type/auth Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/shared/_links.html.erb (0.3ms) Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/new.html.haml within layouts/push_type/auth (1.5ms) Completed 200 OK in 9ms (Views: 5.6ms | ActiveRecord: 0.3ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ---------------------------------------------------------------------------------------------------- PushType::ConfirmationsControllerTest::GET #show::with valid confirmation token: test_0001_anonymous ----------------------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-16@example.com"], ["LIMIT", 1]] PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-16@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-16@example.com"], ["created_at", 2016-07-28 15:23:38 UTC], ["updated_at", 2016-07-28 15:23:38 UTC], ["confirmation_token", "dJEt5kWAMLw4HwVRB35G"], ["confirmation_sent_at", 2016-07-28 15:23:38 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.3ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.0ms Sent mail to joe-16@example.com (3.4ms) Date: Thu, 28 Jul 2016 16:23:38 +0100 From: pushtype@example.com Reply-To: pushtype@example.com To: joe-16@example.com Message-ID: <579a237a73b59_92fd3fe72183f9e473047@Aarons-iMac.local.mail> Subject: [PushType] Confirm your account Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_579a237a73726_92fd3fe72183f9e4729aa"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_579a237a73726_92fd3fe72183f9e4729aa Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit PushType ( http://localhost:3000/push_type/ ) Hello Joe Bloggs You're receiving this email because a PushType account has been created for you. To get started, confirm your account and set your own password by clicking the link below: Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=dJEt5kWAMLw4HwVRB35G ) PushType CMS: www.pushtype.org ( http://www.pushtype.org ). ----==_mimepart_579a237a73726_92fd3fe72183f9e4729aa Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit [PushType] Confirm your account

Hello Joe Bloggs

You're receiving this email because a PushType account has been created for you.

To get started, confirm your account and set your own password by clicking the link below:

Confirm my account

----==_mimepart_579a237a73726_92fd3fe72183f9e4729aa-- Processing by PushType::ConfirmationsController#show as HTML Parameters: {"confirmation_token"=>"dJEt5kWAMLw4HwVRB35G"} PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["confirmation_token", "dJEt5kWAMLw4HwVRB35G"], ["LIMIT", 1]] Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/show.html.haml within layouts/push_type/auth Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/shared/_links.html.erb (0.3ms) Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/show.html.haml within layouts/push_type/auth (1.7ms) Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.2ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ---------------------------------------------------------------------------------------------------- PushType::ConfirmationsControllerTest::GET #show::with valid confirmation token: test_0002_anonymous ----------------------------------------------------------------------------------------------------  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-17@example.com"], ["LIMIT", 1]] PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-17@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-17@example.com"], ["created_at", 2016-07-28 15:23:38 UTC], ["updated_at", 2016-07-28 15:23:38 UTC], ["confirmation_token", "opM4AY2stdZHrX3GTG5w"], ["confirmation_sent_at", 2016-07-28 15:23:38 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.3ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.6ms Sent mail to joe-17@example.com (3.9ms) Date: Thu, 28 Jul 2016 16:23:38 +0100 From: pushtype@example.com Reply-To: pushtype@example.com To: joe-17@example.com Message-ID: <579a237a7f3f3_92fd3fe72183f9e47338@Aarons-iMac.local.mail> Subject: [PushType] Confirm your account Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_579a237a7ef39_92fd3fe72183f9e4732c2"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_579a237a7ef39_92fd3fe72183f9e4732c2 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit PushType ( http://localhost:3000/push_type/ ) Hello Joe Bloggs You're receiving this email because a PushType account has been created for you. To get started, confirm your account and set your own password by clicking the link below: Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=opM4AY2stdZHrX3GTG5w ) PushType CMS: www.pushtype.org ( http://www.pushtype.org ). ----==_mimepart_579a237a7ef39_92fd3fe72183f9e4732c2 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit [PushType] Confirm your account

Hello Joe Bloggs

You're receiving this email because a PushType account has been created for you.

To get started, confirm your account and set your own password by clicking the link below:

Confirm my account

----==_mimepart_579a237a7ef39_92fd3fe72183f9e4732c2-- Processing by PushType::ConfirmationsController#show as HTML Parameters: {"confirmation_token"=>"opM4AY2stdZHrX3GTG5w"} PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["confirmation_token", "opM4AY2stdZHrX3GTG5w"], ["LIMIT", 1]] Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/show.html.haml within layouts/push_type/auth Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/shared/_links.html.erb (0.3ms) Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/show.html.haml within layouts/push_type/auth (1.7ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.2ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ---------------------------------------------------------------------------------------- PushType::ConfirmationsControllerTest::PUT #update::with valid user: test_0001_anonymous ----------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-18@example.com"], ["LIMIT", 1]] PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-18@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-18@example.com"], ["created_at", 2016-07-28 15:23:38 UTC], ["updated_at", 2016-07-28 15:23:38 UTC], ["confirmation_token", "64tNfShMwPkvNzGWWuw1"], ["confirmation_sent_at", 2016-07-28 15:23:38 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.3ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.6ms Sent mail to joe-18@example.com (3.6ms) Date: Thu, 28 Jul 2016 16:23:38 +0100 From: pushtype@example.com Reply-To: pushtype@example.com To: joe-18@example.com Message-ID: <579a237a8b88d_92fd3fe72183f9e473674@Aarons-iMac.local.mail> Subject: [PushType] Confirm your account Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_579a237a8b3aa_92fd3fe72183f9e4735f2"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_579a237a8b3aa_92fd3fe72183f9e4735f2 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit PushType ( http://localhost:3000/push_type/ ) Hello Joe Bloggs You're receiving this email because a PushType account has been created for you. To get started, confirm your account and set your own password by clicking the link below: Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=64tNfShMwPkvNzGWWuw1 ) PushType CMS: www.pushtype.org ( http://www.pushtype.org ). ----==_mimepart_579a237a8b3aa_92fd3fe72183f9e4735f2 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit [PushType] Confirm your account

Hello Joe Bloggs

You're receiving this email because a PushType account has been created for you.

To get started, confirm your account and set your own password by clicking the link below:

Confirm my account

----==_mimepart_579a237a8b3aa_92fd3fe72183f9e4735f2-- Processing by PushType::ConfirmationsController#update as HTML Parameters: {"user"=>{"confirmation_token"=>"64tNfShMwPkvNzGWWuw1", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}} PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["confirmation_token", "64tNfShMwPkvNzGWWuw1"], ["LIMIT", 1]] PushType::User Exists (0.3ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 AND ("push_type_users"."id" != $2) LIMIT $3 [["email", "joe-18@example.com"], ["id", "1a372e77-984b-4dc1-a67b-8d3bb0bd23ba"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_2 SQL (0.2ms) UPDATE "push_type_users" SET "encrypted_password" = $1, "confirmed_at" = $2, "updated_at" = $3 WHERE "push_type_users"."id" = $4 [["encrypted_password", "$2a$04$DRC4G8W3K.XTJgUtXqMRMO.2gwI3Q7jCmONqUa7XJ0L/cdN633f4u"], ["confirmed_at", 2016-07-28 15:23:38 UTC], ["updated_at", 2016-07-28 15:23:38 UTC], ["id", "1a372e77-984b-4dc1-a67b-8d3bb0bd23ba"]]  (0.1ms) RELEASE SAVEPOINT active_record_2  (0.1ms) SAVEPOINT active_record_2 SQL (0.2ms) UPDATE "push_type_users" SET "updated_at" = $1, "sign_in_count" = $2, "current_sign_in_at" = $3, "last_sign_in_at" = $4, "current_sign_in_ip" = $5, "last_sign_in_ip" = $6 WHERE "push_type_users"."id" = $7 [["updated_at", 2016-07-28 15:23:38 UTC], ["sign_in_count", 1], ["current_sign_in_at", 2016-07-28 15:23:38 UTC], ["last_sign_in_at", 2016-07-28 15:23:38 UTC], ["current_sign_in_ip", "0.0.0.0"], ["last_sign_in_ip", "0.0.0.0"], ["id", "1a372e77-984b-4dc1-a67b-8d3bb0bd23ba"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Redirected to http://test.host/push_type/ Completed 302 Found in 8ms (ActiveRecord: 1.3ms) PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 LIMIT $2 [["id", "1a372e77-984b-4dc1-a67b-8d3bb0bd23ba"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ---------------------------------------------------------------------------------------- PushType::ConfirmationsControllerTest::PUT #update::with valid user: test_0002_anonymous ----------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-19@example.com"], ["LIMIT", 1]] PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-19@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-19@example.com"], ["created_at", 2016-07-28 15:23:38 UTC], ["updated_at", 2016-07-28 15:23:38 UTC], ["confirmation_token", "CsT4xj3g-zjzXJhmcaab"], ["confirmation_sent_at", 2016-07-28 15:23:38 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.3ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.8ms Sent mail to joe-19@example.com (3.6ms) Date: Thu, 28 Jul 2016 16:23:38 +0100 From: pushtype@example.com Reply-To: pushtype@example.com To: joe-19@example.com Message-ID: <579a237a989ae_92fd3fe72183f9e473921@Aarons-iMac.local.mail> Subject: [PushType] Confirm your account Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_579a237a984fc_92fd3fe72183f9e473843"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_579a237a984fc_92fd3fe72183f9e473843 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit PushType ( http://localhost:3000/push_type/ ) Hello Joe Bloggs You're receiving this email because a PushType account has been created for you. To get started, confirm your account and set your own password by clicking the link below: Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=CsT4xj3g-zjzXJhmcaab ) PushType CMS: www.pushtype.org ( http://www.pushtype.org ). ----==_mimepart_579a237a984fc_92fd3fe72183f9e473843 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit [PushType] Confirm your account

Hello Joe Bloggs

You're receiving this email because a PushType account has been created for you.

To get started, confirm your account and set your own password by clicking the link below:

Confirm my account

----==_mimepart_579a237a984fc_92fd3fe72183f9e473843-- Processing by PushType::ConfirmationsController#update as HTML Parameters: {"user"=>{"confirmation_token"=>"CsT4xj3g-zjzXJhmcaab", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}} PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["confirmation_token", "CsT4xj3g-zjzXJhmcaab"], ["LIMIT", 1]] PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 AND ("push_type_users"."id" != $2) LIMIT $3 [["email", "joe-19@example.com"], ["id", "d9fb561a-038c-4910-8caf-26d0d53155b6"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_2 SQL (0.2ms) UPDATE "push_type_users" SET "encrypted_password" = $1, "confirmed_at" = $2, "updated_at" = $3 WHERE "push_type_users"."id" = $4 [["encrypted_password", "$2a$04$6FuoG6Jy8TeMH1IN8HDEB.73imUcjDpoejFnqofPTLrJCaubZC2Jy"], ["confirmed_at", 2016-07-28 15:23:38 UTC], ["updated_at", 2016-07-28 15:23:38 UTC], ["id", "d9fb561a-038c-4910-8caf-26d0d53155b6"]]  (0.2ms) RELEASE SAVEPOINT active_record_2  (0.1ms) SAVEPOINT active_record_2 SQL (0.2ms) UPDATE "push_type_users" SET "updated_at" = $1, "sign_in_count" = $2, "current_sign_in_at" = $3, "last_sign_in_at" = $4, "current_sign_in_ip" = $5, "last_sign_in_ip" = $6 WHERE "push_type_users"."id" = $7 [["updated_at", 2016-07-28 15:23:38 UTC], ["sign_in_count", 1], ["current_sign_in_at", 2016-07-28 15:23:38 UTC], ["last_sign_in_at", 2016-07-28 15:23:38 UTC], ["current_sign_in_ip", "0.0.0.0"], ["last_sign_in_ip", "0.0.0.0"], ["id", "d9fb561a-038c-4910-8caf-26d0d53155b6"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Redirected to http://test.host/push_type/ Completed 302 Found in 8ms (ActiveRecord: 1.2ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN -------------------------------------------------------------------------------------------------------------- PushType::AuthenticatableTest::#password_required?::with existing user and clean password: test_0001_anonymous --------------------------------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-20@example.com"], ["LIMIT", 1]] PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-20@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-20@example.com"], ["created_at", 2016-07-28 15:23:38 UTC], ["updated_at", 2016-07-28 15:23:38 UTC], ["confirmation_token", "4b1ctE4VHLRWwPMzyzfJ"], ["confirmation_sent_at", 2016-07-28 15:23:38 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.3ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.6ms Sent mail to joe-20@example.com (3.5ms) Date: Thu, 28 Jul 2016 16:23:38 +0100 From: pushtype@example.com Reply-To: pushtype@example.com To: joe-20@example.com Message-ID: <579a237aa4fc8_92fd3fe72183f9e47421c@Aarons-iMac.local.mail> Subject: [PushType] Confirm your account Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_579a237aa4b71_92fd3fe72183f9e4741dc"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_579a237aa4b71_92fd3fe72183f9e4741dc Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit PushType ( http://localhost:3000/push_type/ ) Hello Joe Bloggs You're receiving this email because a PushType account has been created for you. To get started, confirm your account and set your own password by clicking the link below: Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=4b1ctE4VHLRWwPMzyzfJ ) PushType CMS: www.pushtype.org ( http://www.pushtype.org ). ----==_mimepart_579a237aa4b71_92fd3fe72183f9e4741dc Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit [PushType] Confirm your account

Hello Joe Bloggs

You're receiving this email because a PushType account has been created for you.

To get started, confirm your account and set your own password by clicking the link below:

Confirm my account

----==_mimepart_579a237aa4b71_92fd3fe72183f9e4741dc--  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ------------------------------------------------------------------------------------- PushType::ProfilesControllerTest::PUT #update::with invalid user: test_0001_anonymous -------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-21@example.com"], ["LIMIT", 1]] PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-21@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmed_at", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-21@example.com"], ["created_at", 2016-07-28 15:23:38 UTC], ["updated_at", 2016-07-28 15:23:38 UTC], ["confirmation_token", "Generated account"], ["confirmed_at", 2016-07-28 15:23:38 UTC], ["confirmation_sent_at", 2016-07-28 15:23:38 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ProfilesController#update as HTML Parameters: {"user"=>{"name"=>""}} PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["id", "c22c2702-6231-40ac-8a31-a95aae1aa906"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 AND ("push_type_users"."id" != $2) LIMIT $3 [["email", "joe-21@example.com"], ["id", "c22c2702-6231-40ac-8a31-a95aae1aa906"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/profiles/edit.html.haml within layouts/push_type/admin Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/profiles/edit.html.haml within layouts/push_type/admin (1.8ms) Completed 200 OK in 12ms (Views: 8.0ms | ActiveRecord: 0.5ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ------------------------------------------------------------------------------------- PushType::ProfilesControllerTest::PUT #update::with invalid user: test_0002_anonymous -------------------------------------------------------------------------------------  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-22@example.com"], ["LIMIT", 1]] PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 LIMIT $2 [["email", "joe-22@example.com"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmed_at", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-22@example.com"], ["created_at", 2016-07-28 15:23:38 UTC], ["updated_at", 2016-07-28 15:23:38 UTC], ["confirmation_token", "Generated account"], ["confirmed_at", 2016-07-28 15:23:38 UTC], ["confirmation_sent_at", 2016-07-28 15:23:38 UTC]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ProfilesController#update as HTML Parameters: {"user"=>{"name"=>""}} PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT $2 [["id", "8a50bd0b-fa7a-4ccb-9f91-47e6ff19a36c"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = $1 AND ("push_type_users"."id" != $2) LIMIT $3 [["email", "joe-22@example.com"], ["id", "8a50bd0b-fa7a-4ccb-9f91-47e6ff19a36c"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_2 Rendering /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/profiles/edit.html.haml within layouts/push_type/admin Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/profiles/edit.html.haml within layouts/push_type/admin (1.6ms) Completed 200 OK in 11ms (Views: 7.2ms | ActiveRecord: 0.5ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK