smster 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +32 -0
  4. data/Rakefile +34 -0
  5. data/app/controllers/smster/clickatell_controller.rb +22 -0
  6. data/app/controllers/smster/nexmo_controller.rb +17 -0
  7. data/lib/generators/smster/install/templates/create_smsters.rb +20 -0
  8. data/lib/generators/smster/install/templates/smster.rb +8 -0
  9. data/lib/generators/smster/install_generator.rb +38 -0
  10. data/lib/smster.rb +21 -0
  11. data/lib/smster/configuration.rb +11 -0
  12. data/lib/smster/sms.rb +32 -0
  13. data/lib/smster/sms/clickatell.rb +34 -0
  14. data/lib/smster/sms/nexmo.rb +45 -0
  15. data/lib/smster/version.rb +3 -0
  16. data/lib/tasks/smster_tasks.rake +4 -0
  17. data/test/controller/smster/clickatell_controller_test.rb +27 -0
  18. data/test/controller/smster/nexmo_controller_test.rb +19 -0
  19. data/test/dummy/README.rdoc +28 -0
  20. data/test/dummy/Rakefile +6 -0
  21. data/test/dummy/app/assets/javascripts/application.js +13 -0
  22. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  23. data/test/dummy/app/controllers/application_controller.rb +5 -0
  24. data/test/dummy/app/helpers/application_helper.rb +2 -0
  25. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  26. data/test/dummy/bin/bundle +3 -0
  27. data/test/dummy/bin/rails +4 -0
  28. data/test/dummy/bin/rake +4 -0
  29. data/test/dummy/bin/setup +29 -0
  30. data/test/dummy/config.ru +4 -0
  31. data/test/dummy/config/application.rb +26 -0
  32. data/test/dummy/config/boot.rb +5 -0
  33. data/test/dummy/config/database.yml +25 -0
  34. data/test/dummy/config/environment.rb +5 -0
  35. data/test/dummy/config/environments/development.rb +41 -0
  36. data/test/dummy/config/environments/production.rb +79 -0
  37. data/test/dummy/config/environments/test.rb +42 -0
  38. data/test/dummy/config/initializers/assets.rb +11 -0
  39. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  40. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  41. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  42. data/test/dummy/config/initializers/inflections.rb +16 -0
  43. data/test/dummy/config/initializers/mime_types.rb +4 -0
  44. data/test/dummy/config/initializers/session_store.rb +3 -0
  45. data/test/dummy/config/initializers/smster.rb +8 -0
  46. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  47. data/test/dummy/config/locales/en.yml +23 -0
  48. data/test/dummy/config/routes.rb +4 -0
  49. data/test/dummy/config/secrets.yml +22 -0
  50. data/test/dummy/db/development.sqlite3 +0 -0
  51. data/test/dummy/db/migrate/20150330154603_create_smsters.rb +20 -0
  52. data/test/dummy/db/schema.rb +29 -0
  53. data/test/dummy/db/test.sqlite3 +0 -0
  54. data/test/dummy/log/development.log +141 -0
  55. data/test/dummy/log/test.log +1918 -0
  56. data/test/dummy/public/404.html +67 -0
  57. data/test/dummy/public/422.html +67 -0
  58. data/test/dummy/public/500.html +66 -0
  59. data/test/dummy/public/favicon.ico +0 -0
  60. data/test/smster/sms/clickatell_test.rb +21 -0
  61. data/test/smster/sms/nexmo_test.rb +22 -0
  62. data/test/smster_test.rb +16 -0
  63. data/test/test_helper.rb +19 -0
  64. metadata +181 -0
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+ post 'smster/clickatell/callback'
3
+ post 'smster/nexmo/callback'
4
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: c748d03c774c2780b360e93574a2bd22a27038756b66fc32654c16384c5e4442fab9c1c7dfe0ca3594ba2ceabc688f57248402e633257e81358769da0804c116
15
+
16
+ test:
17
+ secret_key_base: d302d23e221bdf9fb69fc4c87b91ebac73df38bf4f4629bd2974ac8548f77d7ad420c69cf7420c41a9e7a1876cef6c441ddf8c71232818186c7e22620c05eaa8
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
Binary file
@@ -0,0 +1,20 @@
1
+ class CreateSmsters< ActiveRecord::Migration
2
+ def up
3
+ create_table :smsters do |t|
4
+ t.string :text
5
+ t.string :name
6
+ t.string :from
7
+ t.string :to
8
+ t.string :code
9
+ t.string :type
10
+ t.integer :status
11
+ t.string :status_message
12
+
13
+ t.timestamps
14
+ end
15
+ end
16
+
17
+ def down
18
+ drop_table :smsters
19
+ end
20
+ end
@@ -0,0 +1,29 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20150330154603) do
15
+
16
+ create_table "smsters", force: :cascade do |t|
17
+ t.string "text"
18
+ t.string "name"
19
+ t.string "from"
20
+ t.string "to"
21
+ t.string "code"
22
+ t.string "type"
23
+ t.integer "status"
24
+ t.string "status_message"
25
+ t.datetime "created_at"
26
+ t.datetime "updated_at"
27
+ end
28
+
29
+ end
Binary file
@@ -0,0 +1,141 @@
1
+  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.5ms) select sqlite_version(*)
3
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateSmsters (20150330050201)
6
+  (0.1ms) begin transaction
7
+ DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in up at /Users/doniv/Projects/2015/smster/test/dummy/db/migrate/20150330050201_create_smsters.rb:12)
8
+  (0.4ms) CREATE TABLE "smsters" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar, "name" varchar, "from" varchar, "to" varchar, "code" varchar, "type" varchar, "status" integer, "created_at" datetime, "updated_at" datetime)
9
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150330050201"]]
10
+  (0.9ms) commit transaction
11
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+  (0.1ms) begin transaction
13
+ SQL (1.0ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["to", "79069745081"], ["text", "hello world"], ["created_at", "2015-03-30 06:06:46.207256"], ["updated_at", "2015-03-30 06:06:46.207256"]]
14
+  (0.7ms) commit transaction
15
+  (0.1ms) begin transaction
16
+ SQL (0.9ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["to", "79069745081"], ["text", "hello world"], ["created_at", "2015-03-30 06:07:05.671927"], ["updated_at", "2015-03-30 06:07:05.671927"]]
17
+  (2.0ms) commit transaction
18
+  (0.1ms) begin transaction
19
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["to", "79069745081"], ["text", "hello world"], ["created_at", "2015-03-30 06:10:11.029796"], ["updated_at", "2015-03-30 06:10:11.029796"]]
20
+  (1.8ms) commit transaction
21
+  (0.1ms) begin transaction
22
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["to", "79069745081"], ["text", "hello world"], ["created_at", "2015-03-30 06:11:53.789333"], ["updated_at", "2015-03-30 06:11:53.789333"]]
23
+  (2.7ms) commit transaction
24
+  (0.2ms) begin transaction
25
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["to", "79069745081"], ["text", "hello world"], ["created_at", "2015-03-30 06:12:49.889417"], ["updated_at", "2015-03-30 06:12:49.889417"]]
26
+  (2.6ms) commit transaction
27
+  (0.1ms) begin transaction
28
+ SQL (0.5ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["to", "79069745081"], ["text", "hello world"], ["created_at", "2015-03-30 06:13:21.902828"], ["updated_at", "2015-03-30 06:13:21.902828"]]
29
+  (2.6ms) commit transaction
30
+  (0.1ms) begin transaction
31
+ SQL (0.5ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["to", "79069745081"], ["text", "hello world"], ["created_at", "2015-03-30 06:14:10.108821"], ["updated_at", "2015-03-30 06:14:10.108821"]]
32
+  (2.4ms) commit transaction
33
+  (0.1ms) begin transaction
34
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["to", "79069745081"], ["text", "hello world"], ["created_at", "2015-03-30 06:15:49.947743"], ["updated_at", "2015-03-30 06:15:49.947743"]]
35
+ SQL (0.5ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "to" = ?, "text" = ?, "created_at" = ?, "updated_at" = ?, "id" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 3], ["to", "79069745081"], ["text", "hello world"], ["created_at", "2015-03-30 06:15:49.947743"], ["updated_at", "2015-03-30 06:15:49.947743"], ["id", 8], ["id", 8]]
36
+  (1.1ms) commit transaction
37
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
38
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
39
+ Migrating to CreateSmsters (20150330050201)
40
+  (0.1ms) begin transaction
41
+  (1.5ms) DROP TABLE "smsters"
42
+ SQL (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20150330050201"]]
43
+  (0.8ms) commit transaction
44
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
45
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
46
+ Migrating to CreateSmsters (20150330154603)
47
+  (0.1ms) begin transaction
48
+ DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in up at /Users/doniv/Projects/2015/smster/test/dummy/db/migrate/20150330154603_create_smsters.rb:13)
49
+  (0.5ms) CREATE TABLE "smsters" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar, "name" varchar, "from" varchar, "to" varchar, "code" varchar, "type" varchar, "status" integer, "status_message" varchar, "created_at" datetime, "updated_at" datetime) 
50
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150330154603"]]
51
+  (0.9ms) commit transaction
52
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
53
+  (0.2ms) begin transaction
54
+ SQL (0.5ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "123"], ["to", "79069745081"], ["created_at", "2015-03-30 15:48:13.462086"], ["updated_at", "2015-03-30 15:48:13.462086"]]
55
+ SQL (0.5ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "status_message" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 3], ["text", "123"], ["to", "79069745081"], ["created_at", "2015-03-30 15:48:13.462086"], ["updated_at", "2015-03-30 15:48:13.462086"], ["id", 1], ["status_message", "401 Unauthorized: {\"error\":{\"code\":\"001\",\"description\":\"Authentication failed\",\"documentation\":\"http://www.clickatell.com/help/apidocs/error/001.htm\"}}"], ["id", 1]]
56
+  (2.8ms) commit transaction
57
+ Sms Load (0.3ms) SELECT "smsters".* FROM "smsters" ORDER BY "smsters"."id" DESC LIMIT 1
58
+  (0.1ms) begin transaction
59
+ SQL (1.2ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:48:34.785704"], ["updated_at", "2015-03-31 04:48:34.785704"]]
60
+  (2.6ms) commit transaction
61
+  (0.1ms) begin transaction
62
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:48:55.696479"], ["updated_at", "2015-03-31 04:48:55.696479"]]
63
+  (2.6ms) commit transaction
64
+  (0.2ms) begin transaction
65
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:49:21.768210"], ["updated_at", "2015-03-31 04:49:21.768210"]]
66
+  (2.6ms) commit transaction
67
+  (0.1ms) begin transaction
68
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:49:27.359369"], ["updated_at", "2015-03-31 04:49:27.359369"]]
69
+ SQL (0.5ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "to" = ?, "text" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:49:27.359369"], ["updated_at", "2015-03-31 04:49:27.359369"], ["id", 5], ["code", "{\"message-count\":\"1\",\"messages\":[{\"status\":\"2\",\"error-text\":\"Missing username\"}]}"], ["id", 5]]
70
+  (1.1ms) commit transaction
71
+  (0.1ms) begin transaction
72
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:50:21.555572"], ["updated_at", "2015-03-31 04:50:21.555572"]]
73
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "to" = ?, "text" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:50:21.555572"], ["updated_at", "2015-03-31 04:50:21.555572"], ["id", 6], ["code", "{\"message-count\":\"1\",\"messages\":[{\"status\":\"2\",\"error-text\":\"Missing username\"}]}"], ["id", 6]]
74
+  (2.8ms) commit transaction
75
+  (0.1ms) begin transaction
76
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:50:28.889202"], ["updated_at", "2015-03-31 04:50:28.889202"]]
77
+  (2.6ms) commit transaction
78
+  (0.1ms) begin transaction
79
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:52:28.241064"], ["updated_at", "2015-03-31 04:52:28.241064"]]
80
+  (2.7ms) commit transaction
81
+  (0.1ms) begin transaction
82
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:53:26.366220"], ["updated_at", "2015-03-31 04:53:26.366220"]]
83
+  (2.5ms) commit transaction
84
+  (0.2ms) begin transaction
85
+ SQL (0.5ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:53:54.198000"], ["updated_at", "2015-03-31 04:53:54.198000"]]
86
+  (1.0ms) commit transaction
87
+  (0.1ms) begin transaction
88
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:54:29.700212"], ["updated_at", "2015-03-31 04:54:29.700212"]]
89
+  (3.2ms) commit transaction
90
+  (0.1ms) begin transaction
91
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:54:36.371823"], ["updated_at", "2015-03-31 04:54:36.371823"]]
92
+  (2.7ms) commit transaction
93
+  (0.1ms) begin transaction
94
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:57:05.246438"], ["updated_at", "2015-03-31 04:57:05.246438"]]
95
+ SQL (0.5ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "to" = ?, "text" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "status_message" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 3], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:57:05.246438"], ["updated_at", "2015-03-31 04:57:05.246438"], ["id", 13], ["status_message", "Missing username"], ["id", 13]]
96
+  (1.7ms) commit transaction
97
+  (0.1ms) begin transaction
98
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:59:03.678534"], ["updated_at", "2015-03-31 04:59:03.678534"]]
99
+ SQL (0.5ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "to" = ?, "text" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "status_message" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 3], ["to", "32423432"], ["text", "12321"], ["created_at", "2015-03-31 04:59:03.678534"], ["updated_at", "2015-03-31 04:59:03.678534"], ["id", 14], ["status_message", "Unroutable message - rejected"], ["id", 14]]
100
+  (2.8ms) commit transaction
101
+  (0.1ms) begin transaction
102
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["to", "79069745081"], ["text", "12321"], ["created_at", "2015-03-31 04:59:31.501895"], ["updated_at", "2015-03-31 04:59:31.501895"]]
103
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "to" = ?, "text" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "status_message" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 3], ["to", "79069745081"], ["text", "12321"], ["created_at", "2015-03-31 04:59:31.501895"], ["updated_at", "2015-03-31 04:59:31.501895"], ["id", 15], ["status_message", "Unroutable message - rejected"], ["id", 15]]
104
+  (2.8ms) commit transaction
105
+  (0.1ms) begin transaction
106
+ SQL (0.5ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["to", "79676031236"], ["text", "12321"], ["created_at", "2015-03-31 05:04:32.415668"], ["updated_at", "2015-03-31 05:04:32.415668"]]
107
+ SQL (0.5ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "to" = ?, "text" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["to", "79676031236"], ["text", "12321"], ["created_at", "2015-03-31 05:04:32.415668"], ["updated_at", "2015-03-31 05:04:32.415668"], ["id", 16], ["code", "03000000707EAC3B"], ["id", 16]]
108
+  (2.5ms) commit transaction
109
+  (0.1ms) begin transaction
110
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["to", "79676031236"], ["text", "12321"], ["created_at", "2015-03-31 05:06:56.915844"], ["updated_at", "2015-03-31 05:06:56.915844"]]
111
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "to" = ?, "text" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["to", "79676031236"], ["text", "12321"], ["created_at", "2015-03-31 05:06:56.915844"], ["updated_at", "2015-03-31 05:06:56.915844"], ["id", 17], ["code", "0c401a7ccacc99b2bda84bcf4fd66f5d"], ["id", 17]]
112
+  (2.8ms) commit transaction
113
+  (0.1ms) begin transaction
114
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["to", "79676031236"], ["text", "12321"], ["created_at", "2015-03-31 05:08:06.221114"], ["updated_at", "2015-03-31 05:08:06.221114"]]
115
+ Error 401 Unauthorized: {"error":{"code":"001","description":"Authentication failed","documentation":"http://www.clickatell.com/help/apidocs/error/001.htm"}}
116
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "to" = ?, "text" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "status_message" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 3], ["to", "79676031236"], ["text", "12321"], ["created_at", "2015-03-31 05:08:06.221114"], ["updated_at", "2015-03-31 05:08:06.221114"], ["id", 18], ["status_message", "401 Unauthorized: {\"error\":{\"code\":\"001\",\"description\":\"Authentication failed\",\"documentation\":\"http://www.clickatell.com/help/apidocs/error/001.htm\"}}"], ["id", 18]]
117
+  (2.7ms) commit transaction
118
+  (0.1ms) begin transaction
119
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["to", "79676031236"], ["text", "12321"], ["created_at", "2015-03-31 05:10:04.553034"], ["updated_at", "2015-03-31 05:10:04.553034"]]
120
+ Error 401 Unauthorized: {"error":{"code":"001","description":"Authentication failed","documentation":"http://www.clickatell.com/help/apidocs/error/001.htm"}}
121
+ SQL (0.5ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "to" = ?, "text" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "status_message" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 3], ["to", "79676031236"], ["text", "12321"], ["created_at", "2015-03-31 05:10:04.553034"], ["updated_at", "2015-03-31 05:10:04.553034"], ["id", 19], ["status_message", "401 Unauthorized: {\"error\":{\"code\":\"001\",\"description\":\"Authentication failed\",\"documentation\":\"http://www.clickatell.com/help/apidocs/error/001.htm\"}}"], ["id", 19]]
122
+  (2.7ms) commit transaction
123
+  (0.1ms) begin transaction
124
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["to", "79676031236"], ["text", "12321"], ["created_at", "2015-03-31 05:10:50.758850"], ["updated_at", "2015-03-31 05:10:50.758850"]]
125
+ Error 401 Unauthorized: {"error":{"code":"001","description":"Authentication failed","documentation":"http://www.clickatell.com/help/apidocs/error/001.htm"}}
126
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "to" = ?, "text" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "status_message" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 3], ["to", "79676031236"], ["text", "12321"], ["created_at", "2015-03-31 05:10:50.758850"], ["updated_at", "2015-03-31 05:10:50.758850"], ["id", 20], ["status_message", "401 Unauthorized: {\"error\":{\"code\":\"001\",\"description\":\"Authentication failed\",\"documentation\":\"http://www.clickatell.com/help/apidocs/error/001.htm\"}}"], ["id", 20]]
127
+  (2.4ms) commit transaction
128
+  (0.1ms) begin transaction
129
+ SQL (1.4ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["to", "79676031236"], ["text", "12321"], ["created_at", "2015-03-31 05:11:30.558426"], ["updated_at", "2015-03-31 05:11:30.558426"]]
130
+ Error 401 Unauthorized: {"error":{"code":"001","description":"Authentication failed","documentation":"http://www.clickatell.com/help/apidocs/error/001.htm"}}
131
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "to" = ?, "text" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "status_message" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 3], ["to", "79676031236"], ["text", "12321"], ["created_at", "2015-03-31 05:11:30.558426"], ["updated_at", "2015-03-31 05:11:30.558426"], ["id", 21], ["status_message", "401 Unauthorized: {\"error\":{\"code\":\"001\",\"description\":\"Authentication failed\",\"documentation\":\"http://www.clickatell.com/help/apidocs/error/001.htm\"}}"], ["id", 21]]
132
+  (2.5ms) commit transaction
133
+  (0.1ms) begin transaction
134
+ SQL (0.5ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["to", "79676031236"], ["text", "12321"], ["created_at", "2015-03-31 05:11:55.765668"], ["updated_at", "2015-03-31 05:11:55.765668"]]
135
+ Error 401 Unauthorized: {"error":{"code":"001","description":"Authentication failed","documentation":"http://www.clickatell.com/help/apidocs/error/001.htm"}}
136
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "to" = ?, "text" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "status_message" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 3], ["to", "79676031236"], ["text", "12321"], ["created_at", "2015-03-31 05:11:55.765668"], ["updated_at", "2015-03-31 05:11:55.765668"], ["id", 22], ["status_message", "401 Unauthorized: {\"error\":{\"code\":\"001\",\"description\":\"Authentication failed\",\"documentation\":\"http://www.clickatell.com/help/apidocs/error/001.htm\"}}"], ["id", 22]]
137
+  (2.8ms) commit transaction
138
+  (0.1ms) begin transaction
139
+ SQL (0.5ms) INSERT INTO "smsters" ("type", "status", "to", "text", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["to", "79676031236"], ["text", "12321"], ["created_at", "2015-03-31 05:12:12.339970"], ["updated_at", "2015-03-31 05:12:12.339970"]]
140
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "to" = ?, "text" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["to", "79676031236"], ["text", "12321"], ["created_at", "2015-03-31 05:12:12.339970"], ["updated_at", "2015-03-31 05:12:12.339970"], ["id", 23], ["code", "461fc14daf302da9bf07329c7c8eab7e"], ["id", 23]]
141
+  (1.1ms) commit transaction
@@ -0,0 +1,1918 @@
1
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2
+  (0.1ms) begin transaction
3
+ -------------------------------
4
+ SmsterTest: test_confirguration
5
+ -------------------------------
6
+  (0.1ms) rollback transaction
7
+  (0.1ms) begin transaction
8
+ --------------------------------
9
+ Sms::ClickatellTest: test_create
10
+ --------------------------------
11
+  (0.1ms) SAVEPOINT active_record_1
12
+ SQL (0.5ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "text"], ["to", "+5127425"], ["created_at", "2015-03-31 02:58:11.178999"], ["updated_at", "2015-03-31 02:58:11.178999"]]
13
+ Mode: test. To: 5127425, text: text
14
+ SQL (0.6ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "text"], ["to", "+5127425"], ["created_at", "2015-03-31 02:58:11.178999"], ["updated_at", "2015-03-31 02:58:11.178999"], ["id", 1], ["code", "1"], ["id", 1]]
15
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16
+  (2.0ms) rollback transaction
17
+  (0.1ms) begin transaction
18
+ -----------------------------------
19
+ Sms::ClickatellTest: test_format_to
20
+ -----------------------------------
21
+  (0.0ms) rollback transaction
22
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
23
+  (0.1ms) begin transaction
24
+ --------------------------------
25
+ Sms::ClickatellTest: test_create
26
+ --------------------------------
27
+  (0.1ms) SAVEPOINT active_record_1
28
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "1865811"], ["created_at", "2015-03-31 03:00:47.523826"], ["updated_at", "2015-03-31 03:00:47.523826"]]
29
+ Mode: test. To: 1865811, text: simple+text
30
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "1865811"], ["created_at", "2015-03-31 03:00:47.523826"], ["updated_at", "2015-03-31 03:00:47.523826"], ["id", 1], ["code", "1"], ["id", 1]]
31
+  (0.0ms) RELEASE SAVEPOINT active_record_1
32
+  (0.7ms) rollback transaction
33
+  (0.1ms) begin transaction
34
+ -----------------------------------
35
+ Sms::ClickatellTest: test_format_to
36
+ -----------------------------------
37
+  (0.0ms) rollback transaction
38
+  (0.0ms) begin transaction
39
+ -------------------------------
40
+ SmsterTest: test_confirguration
41
+ -------------------------------
42
+  (0.1ms) rollback transaction
43
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
44
+  (0.1ms) begin transaction
45
+ --------------------------------
46
+ Sms::ClickatellTest: test_create
47
+ --------------------------------
48
+  (0.1ms) SAVEPOINT active_record_1
49
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "2434992"], ["created_at", "2015-03-31 03:01:14.696710"], ["updated_at", "2015-03-31 03:01:14.696710"]]
50
+ Mode: test. To: 2434992, text: simple+text
51
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "2434992"], ["created_at", "2015-03-31 03:01:14.696710"], ["updated_at", "2015-03-31 03:01:14.696710"], ["id", 1], ["code", "1"], ["id", 1]]
52
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53
+  (2.2ms) rollback transaction
54
+  (0.1ms) begin transaction
55
+ -----------------------------------
56
+ Sms::ClickatellTest: test_format_to
57
+ -----------------------------------
58
+  (0.0ms) rollback transaction
59
+  (0.0ms) begin transaction
60
+ -------------------------------
61
+ SmsterTest: test_confirguration
62
+ -------------------------------
63
+  (0.0ms) rollback transaction
64
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
65
+  (0.1ms) begin transaction
66
+ --------------------------------
67
+ Sms::ClickatellTest: test_create
68
+ --------------------------------
69
+  (0.1ms) SAVEPOINT active_record_1
70
+ SQL (0.9ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "2684872"], ["created_at", "2015-03-31 03:01:30.731862"], ["updated_at", "2015-03-31 03:01:30.731862"]]
71
+ Mode: test. To: 2684872, text: simple+text
72
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "2684872"], ["created_at", "2015-03-31 03:01:30.731862"], ["updated_at", "2015-03-31 03:01:30.731862"], ["id", 1], ["code", "1"], ["id", 1]]
73
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74
+  (1.8ms) rollback transaction
75
+  (0.1ms) begin transaction
76
+ -----------------------------------
77
+ Sms::ClickatellTest: test_format_to
78
+ -----------------------------------
79
+  (0.0ms) SAVEPOINT active_record_1
80
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+6923332"], ["created_at", "2015-03-31 03:01:30.742323"], ["updated_at", "2015-03-31 03:01:30.742323"]]
81
+ Mode: test. To: 6923332, text: simple+text
82
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+6923332"], ["created_at", "2015-03-31 03:01:30.742323"], ["updated_at", "2015-03-31 03:01:30.742323"], ["id", 1], ["code", "1"], ["id", 1]]
83
+  (0.0ms) RELEASE SAVEPOINT active_record_1
84
+  (0.6ms) rollback transaction
85
+  (0.1ms) begin transaction
86
+ -------------------------------
87
+ SmsterTest: test_confirguration
88
+ -------------------------------
89
+  (0.1ms) rollback transaction
90
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
91
+  (0.1ms) begin transaction
92
+ -------------------------------
93
+ SmsterTest: test_confirguration
94
+ -------------------------------
95
+  (0.0ms) rollback transaction
96
+  (0.0ms) begin transaction
97
+ --------------------------------
98
+ Sms::ClickatellTest: test_create
99
+ --------------------------------
100
+  (0.1ms) SAVEPOINT active_record_1
101
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "3888938"], ["created_at", "2015-03-31 03:02:45.931400"], ["updated_at", "2015-03-31 03:02:45.931400"]]
102
+ Mode: test. To: 3888938, text: simple+text
103
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "3888938"], ["created_at", "2015-03-31 03:02:45.931400"], ["updated_at", "2015-03-31 03:02:45.931400"], ["id", 1], ["code", "1"], ["id", 1]]
104
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105
+  (2.1ms) rollback transaction
106
+  (0.1ms) begin transaction
107
+ -----------------------------------
108
+ Sms::ClickatellTest: test_format_to
109
+ -----------------------------------
110
+  (0.1ms) SAVEPOINT active_record_1
111
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+5455646"], ["created_at", "2015-03-31 03:02:45.941759"], ["updated_at", "2015-03-31 03:02:45.941759"]]
112
+ Mode: test. To: 5455646, text: simple+text
113
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+5455646"], ["created_at", "2015-03-31 03:02:45.941759"], ["updated_at", "2015-03-31 03:02:45.941759"], ["id", 1], ["code", "1"], ["id", 1]]
114
+  (0.1ms) RELEASE SAVEPOINT active_record_1
115
+  (0.5ms) rollback transaction
116
+  (0.1ms) begin transaction
117
+ ------------------------------
118
+ Sms::NexmoTest: test_format_to
119
+ ------------------------------
120
+  (0.1ms) SAVEPOINT active_record_1
121
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+2858457"], ["created_at", "2015-03-31 03:02:45.953692"], ["updated_at", "2015-03-31 03:02:45.953692"]]
122
+ Mode: test. To: 2858457, text: simple+text
123
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+2858457"], ["created_at", "2015-03-31 03:02:45.953692"], ["updated_at", "2015-03-31 03:02:45.953692"], ["id", 1], ["code", "1"], ["id", 1]]
124
+  (0.1ms) RELEASE SAVEPOINT active_record_1
125
+  (0.6ms) rollback transaction
126
+  (0.0ms) begin transaction
127
+ ---------------------------
128
+ Sms::NexmoTest: test_create
129
+ ---------------------------
130
+  (0.0ms) SAVEPOINT active_record_1
131
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "7969298"], ["created_at", "2015-03-31 03:02:45.958022"], ["updated_at", "2015-03-31 03:02:45.958022"]]
132
+ Mode: test. To: 7969298, text: simple+text
133
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "7969298"], ["created_at", "2015-03-31 03:02:45.958022"], ["updated_at", "2015-03-31 03:02:45.958022"], ["id", 1], ["code", "1"], ["id", 1]]
134
+  (0.0ms) RELEASE SAVEPOINT active_record_1
135
+  (0.5ms) rollback transaction
136
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
137
+  (0.1ms) begin transaction
138
+ ------------------------------
139
+ Sms::NexmoTest: test_format_to
140
+ ------------------------------
141
+  (0.0ms) rollback transaction
142
+  (0.0ms) begin transaction
143
+ ---------------------------
144
+ Sms::NexmoTest: test_create
145
+ ---------------------------
146
+  (0.0ms) rollback transaction
147
+  (0.0ms) begin transaction
148
+ --------------------------------
149
+ Sms::ClickatellTest: test_create
150
+ --------------------------------
151
+  (0.1ms) SAVEPOINT active_record_1
152
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "5424272"], ["created_at", "2015-03-31 03:03:04.342785"], ["updated_at", "2015-03-31 03:03:04.342785"]]
153
+ Mode: test. To: 5424272, text: simple+text
154
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "5424272"], ["created_at", "2015-03-31 03:03:04.342785"], ["updated_at", "2015-03-31 03:03:04.342785"], ["id", 1], ["code", "1"], ["id", 1]]
155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156
+  (2.1ms) rollback transaction
157
+  (0.1ms) begin transaction
158
+ -----------------------------------
159
+ Sms::ClickatellTest: test_format_to
160
+ -----------------------------------
161
+  (0.1ms) SAVEPOINT active_record_1
162
+ SQL (0.5ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+8124318"], ["created_at", "2015-03-31 03:03:04.354526"], ["updated_at", "2015-03-31 03:03:04.354526"]]
163
+ Mode: test. To: 8124318, text: simple+text
164
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+8124318"], ["created_at", "2015-03-31 03:03:04.354526"], ["updated_at", "2015-03-31 03:03:04.354526"], ["id", 1], ["code", "1"], ["id", 1]]
165
+  (0.1ms) RELEASE SAVEPOINT active_record_1
166
+  (0.6ms) rollback transaction
167
+  (0.0ms) begin transaction
168
+ -------------------------------
169
+ SmsterTest: test_confirguration
170
+ -------------------------------
171
+  (0.0ms) rollback transaction
172
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
173
+  (0.1ms) begin transaction
174
+ --------------------------------
175
+ Sms::ClickatellTest: test_create
176
+ --------------------------------
177
+  (0.1ms) SAVEPOINT active_record_1
178
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "6868236"], ["created_at", "2015-03-31 03:03:18.243567"], ["updated_at", "2015-03-31 03:03:18.243567"]]
179
+ Mode: test. To: 6868236, text: simple+text
180
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "6868236"], ["created_at", "2015-03-31 03:03:18.243567"], ["updated_at", "2015-03-31 03:03:18.243567"], ["id", 1], ["code", "1"], ["id", 1]]
181
+  (0.0ms) RELEASE SAVEPOINT active_record_1
182
+  (2.4ms) rollback transaction
183
+  (0.1ms) begin transaction
184
+ -----------------------------------
185
+ Sms::ClickatellTest: test_format_to
186
+ -----------------------------------
187
+  (0.1ms) SAVEPOINT active_record_1
188
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+7974381"], ["created_at", "2015-03-31 03:03:18.254279"], ["updated_at", "2015-03-31 03:03:18.254279"]]
189
+ Mode: test. To: 7974381, text: simple+text
190
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+7974381"], ["created_at", "2015-03-31 03:03:18.254279"], ["updated_at", "2015-03-31 03:03:18.254279"], ["id", 1], ["code", "1"], ["id", 1]]
191
+  (0.1ms) RELEASE SAVEPOINT active_record_1
192
+  (0.8ms) rollback transaction
193
+  (0.1ms) begin transaction
194
+ -------------------------------
195
+ SmsterTest: test_confirguration
196
+ -------------------------------
197
+  (0.0ms) rollback transaction
198
+  (0.0ms) begin transaction
199
+ ---------------------------
200
+ Sms::NexmoTest: test_create
201
+ ---------------------------
202
+  (0.1ms) SAVEPOINT active_record_1
203
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "3493646"], ["created_at", "2015-03-31 03:03:18.270495"], ["updated_at", "2015-03-31 03:03:18.270495"]]
204
+ Mode: test. To: 3493646, text: simple+text
205
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "3493646"], ["created_at", "2015-03-31 03:03:18.270495"], ["updated_at", "2015-03-31 03:03:18.270495"], ["id", 1], ["code", "1"], ["id", 1]]
206
+  (0.1ms) RELEASE SAVEPOINT active_record_1
207
+  (0.8ms) rollback transaction
208
+  (0.0ms) begin transaction
209
+ ------------------------------
210
+ Sms::NexmoTest: test_format_to
211
+ ------------------------------
212
+  (0.0ms) SAVEPOINT active_record_1
213
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+1653641"], ["created_at", "2015-03-31 03:03:18.275793"], ["updated_at", "2015-03-31 03:03:18.275793"]]
214
+ Mode: test. To: 1653641, text: simple+text
215
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+1653641"], ["created_at", "2015-03-31 03:03:18.275793"], ["updated_at", "2015-03-31 03:03:18.275793"], ["id", 1], ["code", "1"], ["id", 1]]
216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
217
+  (0.7ms) rollback transaction
218
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
219
+  (0.1ms) begin transaction
220
+ -----------------------------------
221
+ Sms::ClickatellTest: test_format_to
222
+ -----------------------------------
223
+  (0.1ms) SAVEPOINT active_record_1
224
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+3561315"], ["created_at", "2015-03-31 03:03:43.851793"], ["updated_at", "2015-03-31 03:03:43.851793"]]
225
+ Mode: test. To: 3561315, text: simple+text
226
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+3561315"], ["created_at", "2015-03-31 03:03:43.851793"], ["updated_at", "2015-03-31 03:03:43.851793"], ["id", 1], ["code", "1"], ["id", 1]]
227
+  (0.0ms) RELEASE SAVEPOINT active_record_1
228
+  (2.0ms) rollback transaction
229
+  (0.1ms) begin transaction
230
+ --------------------------------
231
+ Sms::ClickatellTest: test_create
232
+ --------------------------------
233
+  (0.1ms) SAVEPOINT active_record_1
234
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "6114965"], ["created_at", "2015-03-31 03:03:43.862383"], ["updated_at", "2015-03-31 03:03:43.862383"]]
235
+ Mode: test. To: 6114965, text: simple+text
236
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "6114965"], ["created_at", "2015-03-31 03:03:43.862383"], ["updated_at", "2015-03-31 03:03:43.862383"], ["id", 1], ["code", "1"], ["id", 1]]
237
+  (0.1ms) RELEASE SAVEPOINT active_record_1
238
+  (0.6ms) rollback transaction
239
+  (0.1ms) begin transaction
240
+ -------------------------------
241
+ SmsterTest: test_confirguration
242
+ -------------------------------
243
+  (0.1ms) rollback transaction
244
+  (0.1ms) begin transaction
245
+ ---------------------------
246
+ Sms::NexmoTest: test_create
247
+ ---------------------------
248
+  (0.1ms) SAVEPOINT active_record_1
249
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "7763677"], ["created_at", "2015-03-31 03:03:43.879581"], ["updated_at", "2015-03-31 03:03:43.879581"]]
250
+ Mode: test. To: 7763677, text: simple+text
251
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "7763677"], ["created_at", "2015-03-31 03:03:43.879581"], ["updated_at", "2015-03-31 03:03:43.879581"], ["id", 1], ["code", "1"], ["id", 1]]
252
+  (0.1ms) RELEASE SAVEPOINT active_record_1
253
+  (0.7ms) rollback transaction
254
+  (0.1ms) begin transaction
255
+ ------------------------------
256
+ Sms::NexmoTest: test_format_to
257
+ ------------------------------
258
+  (0.0ms) SAVEPOINT active_record_1
259
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+3597739"], ["created_at", "2015-03-31 03:03:43.884209"], ["updated_at", "2015-03-31 03:03:43.884209"]]
260
+ Mode: test. To: 3597739, text: simple+text
261
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+3597739"], ["created_at", "2015-03-31 03:03:43.884209"], ["updated_at", "2015-03-31 03:03:43.884209"], ["id", 1], ["code", "1"], ["id", 1]]
262
+  (0.0ms) RELEASE SAVEPOINT active_record_1
263
+  (0.7ms) rollback transaction
264
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
265
+  (0.1ms) begin transaction
266
+ ------------------------------
267
+ Sms::NexmoTest: test_format_to
268
+ ------------------------------
269
+  (0.1ms) SAVEPOINT active_record_1
270
+ SQL (1.5ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+3168386"], ["created_at", "2015-03-31 03:25:58.499555"], ["updated_at", "2015-03-31 03:25:58.499555"]]
271
+ Mode: test. To: 3168386, text: simple+text
272
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+3168386"], ["created_at", "2015-03-31 03:25:58.499555"], ["updated_at", "2015-03-31 03:25:58.499555"], ["id", 1], ["code", "1"], ["id", 1]]
273
+  (0.1ms) RELEASE SAVEPOINT active_record_1
274
+  (0.6ms) rollback transaction
275
+  (0.0ms) begin transaction
276
+ ---------------------------
277
+ Sms::NexmoTest: test_create
278
+ ---------------------------
279
+  (0.0ms) SAVEPOINT active_record_1
280
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "8243343"], ["created_at", "2015-03-31 03:25:58.515746"], ["updated_at", "2015-03-31 03:25:58.515746"]]
281
+ Mode: test. To: 8243343, text: simple+text
282
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "8243343"], ["created_at", "2015-03-31 03:25:58.515746"], ["updated_at", "2015-03-31 03:25:58.515746"], ["id", 1], ["code", "1"], ["id", 1]]
283
+  (0.0ms) RELEASE SAVEPOINT active_record_1
284
+  (0.5ms) rollback transaction
285
+  (0.0ms) begin transaction
286
+ -------------------------------
287
+ SmsterTest: test_confirguration
288
+ -------------------------------
289
+  (0.0ms) rollback transaction
290
+  (0.0ms) begin transaction
291
+ ------------------------------------------------
292
+ CustomRegistrationsControllerTest: test_callback
293
+ ------------------------------------------------
294
+  (0.0ms) rollback transaction
295
+  (0.0ms) begin transaction
296
+ -----------------------------------
297
+ Sms::ClickatellTest: test_format_to
298
+ -----------------------------------
299
+  (0.1ms) SAVEPOINT active_record_1
300
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+2175939"], ["created_at", "2015-03-31 03:25:58.529885"], ["updated_at", "2015-03-31 03:25:58.529885"]]
301
+ Mode: test. To: 2175939, text: simple+text
302
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+2175939"], ["created_at", "2015-03-31 03:25:58.529885"], ["updated_at", "2015-03-31 03:25:58.529885"], ["id", 1], ["code", "1"], ["id", 1]]
303
+  (0.1ms) RELEASE SAVEPOINT active_record_1
304
+  (0.8ms) rollback transaction
305
+  (0.1ms) begin transaction
306
+ --------------------------------
307
+ Sms::ClickatellTest: test_create
308
+ --------------------------------
309
+  (0.1ms) SAVEPOINT active_record_1
310
+ SQL (0.5ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "8597413"], ["created_at", "2015-03-31 03:25:58.535708"], ["updated_at", "2015-03-31 03:25:58.535708"]]
311
+ Mode: test. To: 8597413, text: simple+text
312
+ SQL (0.5ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "8597413"], ["created_at", "2015-03-31 03:25:58.535708"], ["updated_at", "2015-03-31 03:25:58.535708"], ["id", 1], ["code", "1"], ["id", 1]]
313
+  (0.1ms) RELEASE SAVEPOINT active_record_1
314
+  (0.8ms) rollback transaction
315
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
316
+  (0.1ms) begin transaction
317
+ ------------------------------------------------
318
+ CustomRegistrationsControllerTest: test_callback
319
+ ------------------------------------------------
320
+  (0.0ms) rollback transaction
321
+  (0.0ms) begin transaction
322
+ ------------------------------
323
+ Sms::NexmoTest: test_format_to
324
+ ------------------------------
325
+  (0.1ms) SAVEPOINT active_record_1
326
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+7781317"], ["created_at", "2015-03-31 03:27:25.283381"], ["updated_at", "2015-03-31 03:27:25.283381"]]
327
+ Mode: test. To: 7781317, text: simple+text
328
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+7781317"], ["created_at", "2015-03-31 03:27:25.283381"], ["updated_at", "2015-03-31 03:27:25.283381"], ["id", 1], ["code", "1"], ["id", 1]]
329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
330
+  (2.3ms) rollback transaction
331
+  (0.1ms) begin transaction
332
+ ---------------------------
333
+ Sms::NexmoTest: test_create
334
+ ---------------------------
335
+  (0.1ms) SAVEPOINT active_record_1
336
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "8142337"], ["created_at", "2015-03-31 03:27:25.293960"], ["updated_at", "2015-03-31 03:27:25.293960"]]
337
+ Mode: test. To: 8142337, text: simple+text
338
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "8142337"], ["created_at", "2015-03-31 03:27:25.293960"], ["updated_at", "2015-03-31 03:27:25.293960"], ["id", 1], ["code", "1"], ["id", 1]]
339
+  (0.1ms) RELEASE SAVEPOINT active_record_1
340
+  (0.7ms) rollback transaction
341
+  (0.1ms) begin transaction
342
+ -------------------------------
343
+ SmsterTest: test_confirguration
344
+ -------------------------------
345
+  (0.0ms) rollback transaction
346
+  (0.1ms) begin transaction
347
+ -----------------------------------
348
+ Sms::ClickatellTest: test_format_to
349
+ -----------------------------------
350
+  (0.1ms) SAVEPOINT active_record_1
351
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+3497429"], ["created_at", "2015-03-31 03:27:25.307465"], ["updated_at", "2015-03-31 03:27:25.307465"]]
352
+ Mode: test. To: 3497429, text: simple+text
353
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+3497429"], ["created_at", "2015-03-31 03:27:25.307465"], ["updated_at", "2015-03-31 03:27:25.307465"], ["id", 1], ["code", "1"], ["id", 1]]
354
+  (0.0ms) RELEASE SAVEPOINT active_record_1
355
+  (0.6ms) rollback transaction
356
+  (0.0ms) begin transaction
357
+ --------------------------------
358
+ Sms::ClickatellTest: test_create
359
+ --------------------------------
360
+  (0.0ms) SAVEPOINT active_record_1
361
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "7796372"], ["created_at", "2015-03-31 03:27:25.311635"], ["updated_at", "2015-03-31 03:27:25.311635"]]
362
+ Mode: test. To: 7796372, text: simple+text
363
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "7796372"], ["created_at", "2015-03-31 03:27:25.311635"], ["updated_at", "2015-03-31 03:27:25.311635"], ["id", 1], ["code", "1"], ["id", 1]]
364
+  (0.0ms) RELEASE SAVEPOINT active_record_1
365
+  (0.5ms) rollback transaction
366
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
367
+  (0.1ms) begin transaction
368
+ -----------------------------------------------
369
+ Smster::ClickatellControllerTest: test_callback
370
+ -----------------------------------------------
371
+  (0.0ms) rollback transaction
372
+  (0.0ms) begin transaction
373
+ ---------------------------
374
+ Sms::NexmoTest: test_create
375
+ ---------------------------
376
+  (0.1ms) SAVEPOINT active_record_1
377
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "7396929"], ["created_at", "2015-03-31 03:28:03.223249"], ["updated_at", "2015-03-31 03:28:03.223249"]]
378
+ Mode: test. To: 7396929, text: simple+text
379
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "7396929"], ["created_at", "2015-03-31 03:28:03.223249"], ["updated_at", "2015-03-31 03:28:03.223249"], ["id", 1], ["code", "1"], ["id", 1]]
380
+  (0.0ms) RELEASE SAVEPOINT active_record_1
381
+  (2.3ms) rollback transaction
382
+  (0.1ms) begin transaction
383
+ ------------------------------
384
+ Sms::NexmoTest: test_format_to
385
+ ------------------------------
386
+  (0.1ms) SAVEPOINT active_record_1
387
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+3662831"], ["created_at", "2015-03-31 03:28:03.233900"], ["updated_at", "2015-03-31 03:28:03.233900"]]
388
+ Mode: test. To: 3662831, text: simple+text
389
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+3662831"], ["created_at", "2015-03-31 03:28:03.233900"], ["updated_at", "2015-03-31 03:28:03.233900"], ["id", 1], ["code", "1"], ["id", 1]]
390
+  (0.1ms) RELEASE SAVEPOINT active_record_1
391
+  (0.7ms) rollback transaction
392
+  (0.1ms) begin transaction
393
+ --------------------------------
394
+ Sms::ClickatellTest: test_create
395
+ --------------------------------
396
+  (0.1ms) SAVEPOINT active_record_1
397
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "3968811"], ["created_at", "2015-03-31 03:28:03.246211"], ["updated_at", "2015-03-31 03:28:03.246211"]]
398
+ Mode: test. To: 3968811, text: simple+text
399
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "3968811"], ["created_at", "2015-03-31 03:28:03.246211"], ["updated_at", "2015-03-31 03:28:03.246211"], ["id", 1], ["code", "1"], ["id", 1]]
400
+  (0.0ms) RELEASE SAVEPOINT active_record_1
401
+  (0.7ms) rollback transaction
402
+  (0.1ms) begin transaction
403
+ -----------------------------------
404
+ Sms::ClickatellTest: test_format_to
405
+ -----------------------------------
406
+  (0.0ms) SAVEPOINT active_record_1
407
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+1691339"], ["created_at", "2015-03-31 03:28:03.250386"], ["updated_at", "2015-03-31 03:28:03.250386"]]
408
+ Mode: test. To: 1691339, text: simple+text
409
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+1691339"], ["created_at", "2015-03-31 03:28:03.250386"], ["updated_at", "2015-03-31 03:28:03.250386"], ["id", 1], ["code", "1"], ["id", 1]]
410
+  (0.0ms) RELEASE SAVEPOINT active_record_1
411
+  (0.5ms) rollback transaction
412
+  (0.0ms) begin transaction
413
+ -------------------------------
414
+ SmsterTest: test_confirguration
415
+ -------------------------------
416
+  (0.0ms) rollback transaction
417
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
418
+  (0.1ms) begin transaction
419
+ --------------------------------
420
+ Sms::ClickatellTest: test_create
421
+ --------------------------------
422
+  (0.1ms) SAVEPOINT active_record_1
423
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "5386285"], ["created_at", "2015-03-31 03:29:28.712437"], ["updated_at", "2015-03-31 03:29:28.712437"]]
424
+ Mode: test. To: 5386285, text: simple+text
425
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "5386285"], ["created_at", "2015-03-31 03:29:28.712437"], ["updated_at", "2015-03-31 03:29:28.712437"], ["id", 1], ["code", "1"], ["id", 1]]
426
+  (0.0ms) RELEASE SAVEPOINT active_record_1
427
+  (2.4ms) rollback transaction
428
+  (0.1ms) begin transaction
429
+ -----------------------------------
430
+ Sms::ClickatellTest: test_format_to
431
+ -----------------------------------
432
+  (0.1ms) SAVEPOINT active_record_1
433
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+1143822"], ["created_at", "2015-03-31 03:29:28.723332"], ["updated_at", "2015-03-31 03:29:28.723332"]]
434
+ Mode: test. To: 1143822, text: simple+text
435
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+1143822"], ["created_at", "2015-03-31 03:29:28.723332"], ["updated_at", "2015-03-31 03:29:28.723332"], ["id", 1], ["code", "1"], ["id", 1]]
436
+  (0.1ms) RELEASE SAVEPOINT active_record_1
437
+  (0.8ms) rollback transaction
438
+  (0.1ms) begin transaction
439
+ -------------------------------
440
+ SmsterTest: test_confirguration
441
+ -------------------------------
442
+  (0.1ms) rollback transaction
443
+  (0.1ms) begin transaction
444
+ ---------------------------
445
+ Sms::NexmoTest: test_create
446
+ ---------------------------
447
+  (0.1ms) SAVEPOINT active_record_1
448
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "2284569"], ["created_at", "2015-03-31 03:29:28.736970"], ["updated_at", "2015-03-31 03:29:28.736970"]]
449
+ Mode: test. To: 2284569, text: simple+text
450
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "2284569"], ["created_at", "2015-03-31 03:29:28.736970"], ["updated_at", "2015-03-31 03:29:28.736970"], ["id", 1], ["code", "1"], ["id", 1]]
451
+  (0.0ms) RELEASE SAVEPOINT active_record_1
452
+  (0.5ms) rollback transaction
453
+  (0.0ms) begin transaction
454
+ ------------------------------
455
+ Sms::NexmoTest: test_format_to
456
+ ------------------------------
457
+  (0.0ms) SAVEPOINT active_record_1
458
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+9325292"], ["created_at", "2015-03-31 03:29:28.740826"], ["updated_at", "2015-03-31 03:29:28.740826"]]
459
+ Mode: test. To: 9325292, text: simple+text
460
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+9325292"], ["created_at", "2015-03-31 03:29:28.740826"], ["updated_at", "2015-03-31 03:29:28.740826"], ["id", 1], ["code", "1"], ["id", 1]]
461
+  (0.0ms) RELEASE SAVEPOINT active_record_1
462
+  (0.5ms) rollback transaction
463
+  (0.0ms) begin transaction
464
+ -----------------------------------------------
465
+ Smster::ClickatellControllerTest: test_callback
466
+ -----------------------------------------------
467
+  (0.0ms) rollback transaction
468
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
469
+  (0.1ms) begin transaction
470
+ ---------------------------
471
+ Sms::NexmoTest: test_create
472
+ ---------------------------
473
+  (0.1ms) SAVEPOINT active_record_1
474
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "4646347"], ["created_at", "2015-03-31 03:29:57.424733"], ["updated_at", "2015-03-31 03:29:57.424733"]]
475
+ Mode: test. To: 4646347, text: simple+text
476
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "4646347"], ["created_at", "2015-03-31 03:29:57.424733"], ["updated_at", "2015-03-31 03:29:57.424733"], ["id", 1], ["code", "1"], ["id", 1]]
477
+  (0.0ms) RELEASE SAVEPOINT active_record_1
478
+  (2.3ms) rollback transaction
479
+  (0.1ms) begin transaction
480
+ ------------------------------
481
+ Sms::NexmoTest: test_format_to
482
+ ------------------------------
483
+  (0.0ms) SAVEPOINT active_record_1
484
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+5659547"], ["created_at", "2015-03-31 03:29:57.435250"], ["updated_at", "2015-03-31 03:29:57.435250"]]
485
+ Mode: test. To: 5659547, text: simple+text
486
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+5659547"], ["created_at", "2015-03-31 03:29:57.435250"], ["updated_at", "2015-03-31 03:29:57.435250"], ["id", 1], ["code", "1"], ["id", 1]]
487
+  (0.0ms) RELEASE SAVEPOINT active_record_1
488
+  (0.5ms) rollback transaction
489
+  (0.1ms) begin transaction
490
+ -----------------------------------------------
491
+ Smster::ClickatellControllerTest: test_callback
492
+ -----------------------------------------------
493
+  (0.1ms) rollback transaction
494
+  (0.1ms) begin transaction
495
+ --------------------------------
496
+ Sms::ClickatellTest: test_create
497
+ --------------------------------
498
+  (0.1ms) SAVEPOINT active_record_1
499
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "2826914"], ["created_at", "2015-03-31 03:29:57.450157"], ["updated_at", "2015-03-31 03:29:57.450157"]]
500
+ Mode: test. To: 2826914, text: simple+text
501
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "2826914"], ["created_at", "2015-03-31 03:29:57.450157"], ["updated_at", "2015-03-31 03:29:57.450157"], ["id", 1], ["code", "1"], ["id", 1]]
502
+  (0.0ms) RELEASE SAVEPOINT active_record_1
503
+  (0.5ms) rollback transaction
504
+  (0.0ms) begin transaction
505
+ -----------------------------------
506
+ Sms::ClickatellTest: test_format_to
507
+ -----------------------------------
508
+  (0.0ms) SAVEPOINT active_record_1
509
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+2157742"], ["created_at", "2015-03-31 03:29:57.454189"], ["updated_at", "2015-03-31 03:29:57.454189"]]
510
+ Mode: test. To: 2157742, text: simple+text
511
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+2157742"], ["created_at", "2015-03-31 03:29:57.454189"], ["updated_at", "2015-03-31 03:29:57.454189"], ["id", 1], ["code", "1"], ["id", 1]]
512
+  (0.0ms) RELEASE SAVEPOINT active_record_1
513
+  (0.5ms) rollback transaction
514
+  (0.0ms) begin transaction
515
+ -------------------------------
516
+ SmsterTest: test_confirguration
517
+ -------------------------------
518
+  (0.0ms) rollback transaction
519
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
520
+  (0.1ms) begin transaction
521
+ -----------------------------------------------
522
+ Smster::ClickatellControllerTest: test_callback
523
+ -----------------------------------------------
524
+  (0.0ms) rollback transaction
525
+  (0.0ms) begin transaction
526
+ ---------------------------
527
+ Sms::NexmoTest: test_create
528
+ ---------------------------
529
+  (0.1ms) SAVEPOINT active_record_1
530
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "8188381"], ["created_at", "2015-03-31 03:30:10.144639"], ["updated_at", "2015-03-31 03:30:10.144639"]]
531
+ Mode: test. To: 8188381, text: simple+text
532
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "8188381"], ["created_at", "2015-03-31 03:30:10.144639"], ["updated_at", "2015-03-31 03:30:10.144639"], ["id", 1], ["code", "1"], ["id", 1]]
533
+  (0.1ms) RELEASE SAVEPOINT active_record_1
534
+  (2.3ms) rollback transaction
535
+  (0.1ms) begin transaction
536
+ ------------------------------
537
+ Sms::NexmoTest: test_format_to
538
+ ------------------------------
539
+  (0.1ms) SAVEPOINT active_record_1
540
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+7469981"], ["created_at", "2015-03-31 03:30:10.155494"], ["updated_at", "2015-03-31 03:30:10.155494"]]
541
+ Mode: test. To: 7469981, text: simple+text
542
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+7469981"], ["created_at", "2015-03-31 03:30:10.155494"], ["updated_at", "2015-03-31 03:30:10.155494"], ["id", 1], ["code", "1"], ["id", 1]]
543
+  (0.1ms) RELEASE SAVEPOINT active_record_1
544
+  (0.6ms) rollback transaction
545
+  (0.1ms) begin transaction
546
+ -------------------------------
547
+ SmsterTest: test_confirguration
548
+ -------------------------------
549
+  (0.0ms) rollback transaction
550
+  (0.1ms) begin transaction
551
+ -----------------------------------
552
+ Sms::ClickatellTest: test_format_to
553
+ -----------------------------------
554
+  (0.1ms) SAVEPOINT active_record_1
555
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+2197227"], ["created_at", "2015-03-31 03:30:10.168734"], ["updated_at", "2015-03-31 03:30:10.168734"]]
556
+ Mode: test. To: 2197227, text: simple+text
557
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+2197227"], ["created_at", "2015-03-31 03:30:10.168734"], ["updated_at", "2015-03-31 03:30:10.168734"], ["id", 1], ["code", "1"], ["id", 1]]
558
+  (0.0ms) RELEASE SAVEPOINT active_record_1
559
+  (0.5ms) rollback transaction
560
+  (0.0ms) begin transaction
561
+ --------------------------------
562
+ Sms::ClickatellTest: test_create
563
+ --------------------------------
564
+  (0.0ms) SAVEPOINT active_record_1
565
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "8963265"], ["created_at", "2015-03-31 03:30:10.172936"], ["updated_at", "2015-03-31 03:30:10.172936"]]
566
+ Mode: test. To: 8963265, text: simple+text
567
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "8963265"], ["created_at", "2015-03-31 03:30:10.172936"], ["updated_at", "2015-03-31 03:30:10.172936"], ["id", 1], ["code", "1"], ["id", 1]]
568
+  (0.0ms) RELEASE SAVEPOINT active_record_1
569
+  (0.5ms) rollback transaction
570
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
571
+  (0.1ms) begin transaction
572
+ ------------------------------
573
+ Sms::NexmoTest: test_format_to
574
+ ------------------------------
575
+  (0.1ms) SAVEPOINT active_record_1
576
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+4244224"], ["created_at", "2015-03-31 03:31:02.002650"], ["updated_at", "2015-03-31 03:31:02.002650"]]
577
+ Mode: test. To: 4244224, text: simple+text
578
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+4244224"], ["created_at", "2015-03-31 03:31:02.002650"], ["updated_at", "2015-03-31 03:31:02.002650"], ["id", 1], ["code", "1"], ["id", 1]]
579
+  (0.0ms) RELEASE SAVEPOINT active_record_1
580
+  (2.2ms) rollback transaction
581
+  (0.1ms) begin transaction
582
+ ---------------------------
583
+ Sms::NexmoTest: test_create
584
+ ---------------------------
585
+  (0.0ms) SAVEPOINT active_record_1
586
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "3784656"], ["created_at", "2015-03-31 03:31:02.013884"], ["updated_at", "2015-03-31 03:31:02.013884"]]
587
+ Mode: test. To: 3784656, text: simple+text
588
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "3784656"], ["created_at", "2015-03-31 03:31:02.013884"], ["updated_at", "2015-03-31 03:31:02.013884"], ["id", 1], ["code", "1"], ["id", 1]]
589
+  (0.1ms) RELEASE SAVEPOINT active_record_1
590
+  (0.6ms) rollback transaction
591
+  (0.1ms) begin transaction
592
+ -------------------------------
593
+ SmsterTest: test_confirguration
594
+ -------------------------------
595
+  (0.0ms) rollback transaction
596
+  (0.0ms) begin transaction
597
+ -----------------------------------
598
+ Sms::ClickatellTest: test_format_to
599
+ -----------------------------------
600
+  (0.1ms) SAVEPOINT active_record_1
601
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+1856737"], ["created_at", "2015-03-31 03:31:02.027605"], ["updated_at", "2015-03-31 03:31:02.027605"]]
602
+ Mode: test. To: 1856737, text: simple+text
603
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+1856737"], ["created_at", "2015-03-31 03:31:02.027605"], ["updated_at", "2015-03-31 03:31:02.027605"], ["id", 1], ["code", "1"], ["id", 1]]
604
+  (0.0ms) RELEASE SAVEPOINT active_record_1
605
+  (0.6ms) rollback transaction
606
+  (0.0ms) begin transaction
607
+ --------------------------------
608
+ Sms::ClickatellTest: test_create
609
+ --------------------------------
610
+  (0.0ms) SAVEPOINT active_record_1
611
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "9469764"], ["created_at", "2015-03-31 03:31:02.031826"], ["updated_at", "2015-03-31 03:31:02.031826"]]
612
+ Mode: test. To: 9469764, text: simple+text
613
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "9469764"], ["created_at", "2015-03-31 03:31:02.031826"], ["updated_at", "2015-03-31 03:31:02.031826"], ["id", 1], ["code", "1"], ["id", 1]]
614
+  (0.0ms) RELEASE SAVEPOINT active_record_1
615
+  (0.5ms) rollback transaction
616
+  (0.1ms) begin transaction
617
+ ---------------------------------------
618
+ ClickatellControllerTest: test_callback
619
+ ---------------------------------------
620
+  (0.1ms) rollback transaction
621
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
622
+  (0.1ms) begin transaction
623
+ -----------------------------------
624
+ Sms::ClickatellTest: test_format_to
625
+ -----------------------------------
626
+  (0.1ms) SAVEPOINT active_record_1
627
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+8999567"], ["created_at", "2015-03-31 03:31:20.870059"], ["updated_at", "2015-03-31 03:31:20.870059"]]
628
+ Mode: test. To: 8999567, text: simple+text
629
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+8999567"], ["created_at", "2015-03-31 03:31:20.870059"], ["updated_at", "2015-03-31 03:31:20.870059"], ["id", 1], ["code", "1"], ["id", 1]]
630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
631
+  (1.3ms) rollback transaction
632
+  (0.1ms) begin transaction
633
+ --------------------------------
634
+ Sms::ClickatellTest: test_create
635
+ --------------------------------
636
+  (0.1ms) SAVEPOINT active_record_1
637
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "5528439"], ["created_at", "2015-03-31 03:31:20.879636"], ["updated_at", "2015-03-31 03:31:20.879636"]]
638
+ Mode: test. To: 5528439, text: simple+text
639
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "5528439"], ["created_at", "2015-03-31 03:31:20.879636"], ["updated_at", "2015-03-31 03:31:20.879636"], ["id", 1], ["code", "1"], ["id", 1]]
640
+  (0.1ms) RELEASE SAVEPOINT active_record_1
641
+  (0.6ms) rollback transaction
642
+  (0.1ms) begin transaction
643
+ -----------------------------------------------
644
+ Smster::ClickatellControllerTest: test_callback
645
+ -----------------------------------------------
646
+  (0.1ms) rollback transaction
647
+  (0.1ms) begin transaction
648
+ ---------------------------
649
+ Sms::NexmoTest: test_create
650
+ ---------------------------
651
+  (0.1ms) SAVEPOINT active_record_1
652
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "9884882"], ["created_at", "2015-03-31 03:31:20.894289"], ["updated_at", "2015-03-31 03:31:20.894289"]]
653
+ Mode: test. To: 9884882, text: simple+text
654
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "9884882"], ["created_at", "2015-03-31 03:31:20.894289"], ["updated_at", "2015-03-31 03:31:20.894289"], ["id", 1], ["code", "1"], ["id", 1]]
655
+  (0.0ms) RELEASE SAVEPOINT active_record_1
656
+  (0.6ms) rollback transaction
657
+  (0.0ms) begin transaction
658
+ ------------------------------
659
+ Sms::NexmoTest: test_format_to
660
+ ------------------------------
661
+  (0.0ms) SAVEPOINT active_record_1
662
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+9537759"], ["created_at", "2015-03-31 03:31:20.898392"], ["updated_at", "2015-03-31 03:31:20.898392"]]
663
+ Mode: test. To: 9537759, text: simple+text
664
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+9537759"], ["created_at", "2015-03-31 03:31:20.898392"], ["updated_at", "2015-03-31 03:31:20.898392"], ["id", 1], ["code", "1"], ["id", 1]]
665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
666
+  (0.5ms) rollback transaction
667
+  (0.1ms) begin transaction
668
+ -------------------------------
669
+ SmsterTest: test_confirguration
670
+ -------------------------------
671
+  (0.0ms) rollback transaction
672
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
673
+  (0.1ms) begin transaction
674
+ -------------------------------
675
+ SmsterTest: test_confirguration
676
+ -------------------------------
677
+  (0.0ms) rollback transaction
678
+  (0.0ms) begin transaction
679
+ ---------------------------
680
+ Sms::NexmoTest: test_create
681
+ ---------------------------
682
+  (0.1ms) SAVEPOINT active_record_1
683
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "8867448"], ["created_at", "2015-03-31 03:43:19.441759"], ["updated_at", "2015-03-31 03:43:19.441759"]]
684
+ Mode: test. To: 8867448, text: simple+text
685
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "8867448"], ["created_at", "2015-03-31 03:43:19.441759"], ["updated_at", "2015-03-31 03:43:19.441759"], ["id", 1], ["code", "1"], ["id", 1]]
686
+  (0.0ms) RELEASE SAVEPOINT active_record_1
687
+  (0.6ms) rollback transaction
688
+  (0.0ms) begin transaction
689
+ ------------------------------
690
+ Sms::NexmoTest: test_format_to
691
+ ------------------------------
692
+  (0.1ms) SAVEPOINT active_record_1
693
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+8775862"], ["created_at", "2015-03-31 03:43:19.451012"], ["updated_at", "2015-03-31 03:43:19.451012"]]
694
+ Mode: test. To: 8775862, text: simple+text
695
+ SQL (0.5ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+8775862"], ["created_at", "2015-03-31 03:43:19.451012"], ["updated_at", "2015-03-31 03:43:19.451012"], ["id", 1], ["code", "1"], ["id", 1]]
696
+  (0.1ms) RELEASE SAVEPOINT active_record_1
697
+  (0.6ms) rollback transaction
698
+  (0.0ms) begin transaction
699
+ --------------------------------
700
+ Sms::ClickatellTest: test_create
701
+ --------------------------------
702
+  (0.1ms) SAVEPOINT active_record_1
703
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "4394972"], ["created_at", "2015-03-31 03:43:19.463072"], ["updated_at", "2015-03-31 03:43:19.463072"]]
704
+ Mode: test. To: 4394972, text: simple+text
705
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "4394972"], ["created_at", "2015-03-31 03:43:19.463072"], ["updated_at", "2015-03-31 03:43:19.463072"], ["id", 1], ["code", "1"], ["id", 1]]
706
+  (0.0ms) RELEASE SAVEPOINT active_record_1
707
+  (0.5ms) rollback transaction
708
+  (0.0ms) begin transaction
709
+ -----------------------------------
710
+ Sms::ClickatellTest: test_format_to
711
+ -----------------------------------
712
+  (0.0ms) SAVEPOINT active_record_1
713
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+2715116"], ["created_at", "2015-03-31 03:43:19.467153"], ["updated_at", "2015-03-31 03:43:19.467153"]]
714
+ Mode: test. To: 2715116, text: simple+text
715
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+2715116"], ["created_at", "2015-03-31 03:43:19.467153"], ["updated_at", "2015-03-31 03:43:19.467153"], ["id", 1], ["code", "1"], ["id", 1]]
716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
717
+  (0.5ms) rollback transaction
718
+  (0.0ms) begin transaction
719
+ -----------------------------------------------
720
+ Smster::ClickatellControllerTest: test_callback
721
+ -----------------------------------------------
722
+  (0.1ms) rollback transaction
723
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
724
+  (0.1ms) begin transaction
725
+ -------------------------------
726
+ SmsterTest: test_confirguration
727
+ -------------------------------
728
+  (0.1ms) rollback transaction
729
+  (0.0ms) begin transaction
730
+ -----------------------------------
731
+ Sms::ClickatellTest: test_format_to
732
+ -----------------------------------
733
+  (0.1ms) SAVEPOINT active_record_1
734
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+2437143"], ["created_at", "2015-03-31 03:43:32.061653"], ["updated_at", "2015-03-31 03:43:32.061653"]]
735
+ Mode: test. To: 2437143, text: simple+text
736
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+2437143"], ["created_at", "2015-03-31 03:43:32.061653"], ["updated_at", "2015-03-31 03:43:32.061653"], ["id", 1], ["code", "1"], ["id", 1]]
737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
738
+  (0.6ms) rollback transaction
739
+  (0.0ms) begin transaction
740
+ --------------------------------
741
+ Sms::ClickatellTest: test_create
742
+ --------------------------------
743
+  (0.0ms) SAVEPOINT active_record_1
744
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "7647842"], ["created_at", "2015-03-31 03:43:32.071157"], ["updated_at", "2015-03-31 03:43:32.071157"]]
745
+ Mode: test. To: 7647842, text: simple+text
746
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "7647842"], ["created_at", "2015-03-31 03:43:32.071157"], ["updated_at", "2015-03-31 03:43:32.071157"], ["id", 1], ["code", "1"], ["id", 1]]
747
+  (0.1ms) RELEASE SAVEPOINT active_record_1
748
+  (0.9ms) rollback transaction
749
+  (0.1ms) begin transaction
750
+ ---------------------------
751
+ Sms::NexmoTest: test_create
752
+ ---------------------------
753
+  (0.1ms) SAVEPOINT active_record_1
754
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "2135853"], ["created_at", "2015-03-31 03:43:32.085098"], ["updated_at", "2015-03-31 03:43:32.085098"]]
755
+ Mode: test. To: 2135853, text: simple+text
756
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "2135853"], ["created_at", "2015-03-31 03:43:32.085098"], ["updated_at", "2015-03-31 03:43:32.085098"], ["id", 1], ["code", "1"], ["id", 1]]
757
+  (0.1ms) RELEASE SAVEPOINT active_record_1
758
+  (0.6ms) rollback transaction
759
+  (0.0ms) begin transaction
760
+ ------------------------------
761
+ Sms::NexmoTest: test_format_to
762
+ ------------------------------
763
+  (0.0ms) SAVEPOINT active_record_1
764
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+4439493"], ["created_at", "2015-03-31 03:43:32.089641"], ["updated_at", "2015-03-31 03:43:32.089641"]]
765
+ Mode: test. To: 4439493, text: simple+text
766
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+4439493"], ["created_at", "2015-03-31 03:43:32.089641"], ["updated_at", "2015-03-31 03:43:32.089641"], ["id", 1], ["code", "1"], ["id", 1]]
767
+  (0.0ms) RELEASE SAVEPOINT active_record_1
768
+  (0.4ms) rollback transaction
769
+  (0.0ms) begin transaction
770
+ -----------------------------------------------
771
+ Smster::ClickatellControllerTest: test_callback
772
+ -----------------------------------------------
773
+  (0.0ms) rollback transaction
774
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
775
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
776
+  (0.1ms) begin transaction
777
+ ---------------------------
778
+ Sms::NexmoTest: test_create
779
+ ---------------------------
780
+  (0.1ms) SAVEPOINT active_record_1
781
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "4478899"], ["created_at", "2015-03-31 03:44:05.990913"], ["updated_at", "2015-03-31 03:44:05.990913"]]
782
+ Mode: test. To: 4478899, text: simple+text
783
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "4478899"], ["created_at", "2015-03-31 03:44:05.990913"], ["updated_at", "2015-03-31 03:44:05.990913"], ["id", 1], ["code", "1"], ["id", 1]]
784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785
+  (2.1ms) rollback transaction
786
+  (0.1ms) begin transaction
787
+ ------------------------------
788
+ Sms::NexmoTest: test_format_to
789
+ ------------------------------
790
+  (0.0ms) SAVEPOINT active_record_1
791
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+8163677"], ["created_at", "2015-03-31 03:44:06.001698"], ["updated_at", "2015-03-31 03:44:06.001698"]]
792
+ Mode: test. To: 8163677, text: simple+text
793
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+8163677"], ["created_at", "2015-03-31 03:44:06.001698"], ["updated_at", "2015-03-31 03:44:06.001698"], ["id", 1], ["code", "1"], ["id", 1]]
794
+  (0.1ms) RELEASE SAVEPOINT active_record_1
795
+  (0.8ms) rollback transaction
796
+  (0.1ms) begin transaction
797
+ -----------------------------------------------
798
+ Smster::ClickatellControllerTest: test_callback
799
+ -----------------------------------------------
800
+  (0.1ms) rollback transaction
801
+  (0.1ms) begin transaction
802
+ ------------------------------------------------
803
+ Smster::ClickatellControllerTest: test_callback1
804
+ ------------------------------------------------
805
+  (0.1ms) rollback transaction
806
+  (0.0ms) begin transaction
807
+ -----------------------------------
808
+ Sms::ClickatellTest: test_format_to
809
+ -----------------------------------
810
+  (0.1ms) SAVEPOINT active_record_1
811
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+6848268"], ["created_at", "2015-03-31 03:44:06.018802"], ["updated_at", "2015-03-31 03:44:06.018802"]]
812
+ Mode: test. To: 6848268, text: simple+text
813
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+6848268"], ["created_at", "2015-03-31 03:44:06.018802"], ["updated_at", "2015-03-31 03:44:06.018802"], ["id", 1], ["code", "1"], ["id", 1]]
814
+  (0.1ms) RELEASE SAVEPOINT active_record_1
815
+  (0.5ms) rollback transaction
816
+  (0.1ms) begin transaction
817
+ --------------------------------
818
+ Sms::ClickatellTest: test_create
819
+ --------------------------------
820
+  (0.1ms) SAVEPOINT active_record_1
821
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "5139145"], ["created_at", "2015-03-31 03:44:06.024033"], ["updated_at", "2015-03-31 03:44:06.024033"]]
822
+ Mode: test. To: 5139145, text: simple+text
823
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "5139145"], ["created_at", "2015-03-31 03:44:06.024033"], ["updated_at", "2015-03-31 03:44:06.024033"], ["id", 1], ["code", "1"], ["id", 1]]
824
+  (0.1ms) RELEASE SAVEPOINT active_record_1
825
+  (0.6ms) rollback transaction
826
+  (0.1ms) begin transaction
827
+ -------------------------------
828
+ SmsterTest: test_confirguration
829
+ -------------------------------
830
+  (0.1ms) rollback transaction
831
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
832
+  (0.1ms) begin transaction
833
+ ----------------------------------------
834
+ ClickatellControllerTest: test_callback1
835
+ ----------------------------------------
836
+  (0.0ms) rollback transaction
837
+  (0.0ms) begin transaction
838
+ -----------------------------------------------
839
+ Smster::ClickatellControllerTest: test_callback
840
+ -----------------------------------------------
841
+  (0.0ms) rollback transaction
842
+  (0.0ms) begin transaction
843
+ -------------------------------
844
+ SmsterTest: test_confirguration
845
+ -------------------------------
846
+  (0.0ms) rollback transaction
847
+  (0.1ms) begin transaction
848
+ --------------------------------
849
+ Sms::ClickatellTest: test_create
850
+ --------------------------------
851
+  (0.1ms) SAVEPOINT active_record_1
852
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "6292994"], ["created_at", "2015-03-31 03:44:13.985640"], ["updated_at", "2015-03-31 03:44:13.985640"]]
853
+ Mode: test. To: 6292994, text: simple+text
854
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "6292994"], ["created_at", "2015-03-31 03:44:13.985640"], ["updated_at", "2015-03-31 03:44:13.985640"], ["id", 1], ["code", "1"], ["id", 1]]
855
+  (0.0ms) RELEASE SAVEPOINT active_record_1
856
+  (2.0ms) rollback transaction
857
+  (0.1ms) begin transaction
858
+ -----------------------------------
859
+ Sms::ClickatellTest: test_format_to
860
+ -----------------------------------
861
+  (0.1ms) SAVEPOINT active_record_1
862
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+9649374"], ["created_at", "2015-03-31 03:44:13.996305"], ["updated_at", "2015-03-31 03:44:13.996305"]]
863
+ Mode: test. To: 9649374, text: simple+text
864
+ SQL (0.6ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+9649374"], ["created_at", "2015-03-31 03:44:13.996305"], ["updated_at", "2015-03-31 03:44:13.996305"], ["id", 1], ["code", "1"], ["id", 1]]
865
+  (0.1ms) RELEASE SAVEPOINT active_record_1
866
+  (0.6ms) rollback transaction
867
+  (0.1ms) begin transaction
868
+ ---------------------------
869
+ Sms::NexmoTest: test_create
870
+ ---------------------------
871
+  (0.1ms) SAVEPOINT active_record_1
872
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "5664371"], ["created_at", "2015-03-31 03:44:14.009422"], ["updated_at", "2015-03-31 03:44:14.009422"]]
873
+ Mode: test. To: 5664371, text: simple+text
874
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "5664371"], ["created_at", "2015-03-31 03:44:14.009422"], ["updated_at", "2015-03-31 03:44:14.009422"], ["id", 1], ["code", "1"], ["id", 1]]
875
+  (0.0ms) RELEASE SAVEPOINT active_record_1
876
+  (0.6ms) rollback transaction
877
+  (0.0ms) begin transaction
878
+ ------------------------------
879
+ Sms::NexmoTest: test_format_to
880
+ ------------------------------
881
+  (0.0ms) SAVEPOINT active_record_1
882
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+9342595"], ["created_at", "2015-03-31 03:44:14.013858"], ["updated_at", "2015-03-31 03:44:14.013858"]]
883
+ Mode: test. To: 9342595, text: simple+text
884
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+9342595"], ["created_at", "2015-03-31 03:44:14.013858"], ["updated_at", "2015-03-31 03:44:14.013858"], ["id", 1], ["code", "1"], ["id", 1]]
885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
886
+  (0.6ms) rollback transaction
887
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
888
+  (0.1ms) begin transaction
889
+ -------------------------------
890
+ SmsterTest: test_confirguration
891
+ -------------------------------
892
+  (0.0ms) rollback transaction
893
+  (0.0ms) begin transaction
894
+ --------------------------------
895
+ Sms::ClickatellTest: test_create
896
+ --------------------------------
897
+  (0.1ms) SAVEPOINT active_record_1
898
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "6565891"], ["created_at", "2015-03-31 03:44:25.525574"], ["updated_at", "2015-03-31 03:44:25.525574"]]
899
+ Mode: test. To: 6565891, text: simple+text
900
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "6565891"], ["created_at", "2015-03-31 03:44:25.525574"], ["updated_at", "2015-03-31 03:44:25.525574"], ["id", 1], ["code", "1"], ["id", 1]]
901
+  (0.0ms) RELEASE SAVEPOINT active_record_1
902
+  (2.0ms) rollback transaction
903
+  (0.1ms) begin transaction
904
+ -----------------------------------
905
+ Sms::ClickatellTest: test_format_to
906
+ -----------------------------------
907
+  (0.0ms) SAVEPOINT active_record_1
908
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+9471628"], ["created_at", "2015-03-31 03:44:25.536452"], ["updated_at", "2015-03-31 03:44:25.536452"]]
909
+ Mode: test. To: 9471628, text: simple+text
910
+ SQL (0.5ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+9471628"], ["created_at", "2015-03-31 03:44:25.536452"], ["updated_at", "2015-03-31 03:44:25.536452"], ["id", 1], ["code", "1"], ["id", 1]]
911
+  (0.1ms) RELEASE SAVEPOINT active_record_1
912
+  (0.7ms) rollback transaction
913
+  (0.1ms) begin transaction
914
+ ---------------------------
915
+ Sms::NexmoTest: test_create
916
+ ---------------------------
917
+  (0.1ms) SAVEPOINT active_record_1
918
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "4347168"], ["created_at", "2015-03-31 03:44:25.549098"], ["updated_at", "2015-03-31 03:44:25.549098"]]
919
+ Mode: test. To: 4347168, text: simple+text
920
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "4347168"], ["created_at", "2015-03-31 03:44:25.549098"], ["updated_at", "2015-03-31 03:44:25.549098"], ["id", 1], ["code", "1"], ["id", 1]]
921
+  (0.1ms) RELEASE SAVEPOINT active_record_1
922
+  (0.6ms) rollback transaction
923
+  (0.1ms) begin transaction
924
+ ------------------------------
925
+ Sms::NexmoTest: test_format_to
926
+ ------------------------------
927
+  (0.1ms) SAVEPOINT active_record_1
928
+ SQL (0.5ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+4676371"], ["created_at", "2015-03-31 03:44:25.554214"], ["updated_at", "2015-03-31 03:44:25.554214"]]
929
+ Mode: test. To: 4676371, text: simple+text
930
+ SQL (0.5ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+4676371"], ["created_at", "2015-03-31 03:44:25.554214"], ["updated_at", "2015-03-31 03:44:25.554214"], ["id", 1], ["code", "1"], ["id", 1]]
931
+  (0.1ms) RELEASE SAVEPOINT active_record_1
932
+  (0.8ms) rollback transaction
933
+  (0.1ms) begin transaction
934
+ ----------------------------------------
935
+ ClickatellControllerTest: test_callback1
936
+ ----------------------------------------
937
+  (0.1ms) rollback transaction
938
+  (0.0ms) begin transaction
939
+ -----------------------------------------------
940
+ Smster::ClickatellControllerTest: test_callback
941
+ -----------------------------------------------
942
+  (0.0ms) rollback transaction
943
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
944
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
945
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
946
+  (0.1ms) begin transaction
947
+ ---------------------------
948
+ Sms::NexmoTest: test_create
949
+ ---------------------------
950
+  (0.1ms) SAVEPOINT active_record_1
951
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "6934584"], ["created_at", "2015-03-31 03:47:59.777855"], ["updated_at", "2015-03-31 03:47:59.777855"]]
952
+ Mode: test. To: 6934584, text: simple+text
953
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "6934584"], ["created_at", "2015-03-31 03:47:59.777855"], ["updated_at", "2015-03-31 03:47:59.777855"], ["id", 1], ["code", "1"], ["id", 1]]
954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
955
+  (0.6ms) rollback transaction
956
+  (0.0ms) begin transaction
957
+ ------------------------------
958
+ Sms::NexmoTest: test_format_to
959
+ ------------------------------
960
+  (0.0ms) SAVEPOINT active_record_1
961
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+3512779"], ["created_at", "2015-03-31 03:47:59.786827"], ["updated_at", "2015-03-31 03:47:59.786827"]]
962
+ Mode: test. To: 3512779, text: simple+text
963
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+3512779"], ["created_at", "2015-03-31 03:47:59.786827"], ["updated_at", "2015-03-31 03:47:59.786827"], ["id", 1], ["code", "1"], ["id", 1]]
964
+  (0.0ms) RELEASE SAVEPOINT active_record_1
965
+  (0.7ms) rollback transaction
966
+  (0.0ms) begin transaction
967
+ -----------------------------------------------
968
+ Smster::ClickatellControllerTest: test_callback
969
+ -----------------------------------------------
970
+  (0.0ms) rollback transaction
971
+  (0.0ms) begin transaction
972
+ --------------------------------
973
+ Sms::ClickatellTest: test_create
974
+ --------------------------------
975
+  (0.1ms) SAVEPOINT active_record_1
976
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "3189543"], ["created_at", "2015-03-31 03:47:59.801761"], ["updated_at", "2015-03-31 03:47:59.801761"]]
977
+ Mode: test. To: 3189543, text: simple+text
978
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "3189543"], ["created_at", "2015-03-31 03:47:59.801761"], ["updated_at", "2015-03-31 03:47:59.801761"], ["id", 1], ["code", "1"], ["id", 1]]
979
+  (0.0ms) RELEASE SAVEPOINT active_record_1
980
+  (0.6ms) rollback transaction
981
+  (0.1ms) begin transaction
982
+ -----------------------------------
983
+ Sms::ClickatellTest: test_format_to
984
+ -----------------------------------
985
+  (0.0ms) SAVEPOINT active_record_1
986
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+2982762"], ["created_at", "2015-03-31 03:47:59.806497"], ["updated_at", "2015-03-31 03:47:59.806497"]]
987
+ Mode: test. To: 2982762, text: simple+text
988
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+2982762"], ["created_at", "2015-03-31 03:47:59.806497"], ["updated_at", "2015-03-31 03:47:59.806497"], ["id", 1], ["code", "1"], ["id", 1]]
989
+  (0.1ms) RELEASE SAVEPOINT active_record_1
990
+  (0.6ms) rollback transaction
991
+  (0.0ms) begin transaction
992
+ -------------------------------
993
+ SmsterTest: test_confirguration
994
+ -------------------------------
995
+  (0.0ms) rollback transaction
996
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
997
+  (0.1ms) begin transaction
998
+ ------------------------------
999
+ Sms::NexmoTest: test_format_to
1000
+ ------------------------------
1001
+  (0.1ms) SAVEPOINT active_record_1
1002
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+9274191"], ["created_at", "2015-03-31 03:48:20.803623"], ["updated_at", "2015-03-31 03:48:20.803623"]]
1003
+ Mode: test. To: 9274191, text: simple+text
1004
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+9274191"], ["created_at", "2015-03-31 03:48:20.803623"], ["updated_at", "2015-03-31 03:48:20.803623"], ["id", 1], ["code", "1"], ["id", 1]]
1005
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1006
+  (2.3ms) rollback transaction
1007
+  (0.1ms) begin transaction
1008
+ ---------------------------
1009
+ Sms::NexmoTest: test_create
1010
+ ---------------------------
1011
+  (0.1ms) SAVEPOINT active_record_1
1012
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "4939499"], ["created_at", "2015-03-31 03:48:20.814558"], ["updated_at", "2015-03-31 03:48:20.814558"]]
1013
+ Mode: test. To: 4939499, text: simple+text
1014
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "4939499"], ["created_at", "2015-03-31 03:48:20.814558"], ["updated_at", "2015-03-31 03:48:20.814558"], ["id", 1], ["code", "1"], ["id", 1]]
1015
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1016
+  (0.8ms) rollback transaction
1017
+  (0.1ms) begin transaction
1018
+ -----------------------------------------------
1019
+ Smster::ClickatellControllerTest: test_callback
1020
+ -----------------------------------------------
1021
+  (0.1ms) rollback transaction
1022
+  (0.0ms) begin transaction
1023
+ -------------------------------
1024
+ SmsterTest: test_confirguration
1025
+ -------------------------------
1026
+  (0.0ms) rollback transaction
1027
+  (0.0ms) begin transaction
1028
+ --------------------------------
1029
+ Sms::ClickatellTest: test_create
1030
+ --------------------------------
1031
+  (0.1ms) SAVEPOINT active_record_1
1032
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "9793429"], ["created_at", "2015-03-31 03:48:20.865683"], ["updated_at", "2015-03-31 03:48:20.865683"]]
1033
+ Mode: test. To: 9793429, text: simple+text
1034
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "9793429"], ["created_at", "2015-03-31 03:48:20.865683"], ["updated_at", "2015-03-31 03:48:20.865683"], ["id", 1], ["code", "1"], ["id", 1]]
1035
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1036
+  (0.6ms) rollback transaction
1037
+  (0.0ms) begin transaction
1038
+ -----------------------------------
1039
+ Sms::ClickatellTest: test_format_to
1040
+ -----------------------------------
1041
+  (0.0ms) SAVEPOINT active_record_1
1042
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+1532412"], ["created_at", "2015-03-31 03:48:20.869956"], ["updated_at", "2015-03-31 03:48:20.869956"]]
1043
+ Mode: test. To: 1532412, text: simple+text
1044
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+1532412"], ["created_at", "2015-03-31 03:48:20.869956"], ["updated_at", "2015-03-31 03:48:20.869956"], ["id", 1], ["code", "1"], ["id", 1]]
1045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1046
+  (0.6ms) rollback transaction
1047
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1048
+  (0.1ms) begin transaction
1049
+ -----------------------------------------------
1050
+ Smster::ClickatellControllerTest: test_callback
1051
+ -----------------------------------------------
1052
+  (0.1ms) rollback transaction
1053
+  (0.1ms) begin transaction
1054
+ ---------------------------
1055
+ Sms::NexmoTest: test_create
1056
+ ---------------------------
1057
+  (0.1ms) SAVEPOINT active_record_1
1058
+ SQL (0.5ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "4789387"], ["created_at", "2015-03-31 03:49:40.281458"], ["updated_at", "2015-03-31 03:49:40.281458"]]
1059
+ Mode: test. To: 4789387, text: simple+text
1060
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "4789387"], ["created_at", "2015-03-31 03:49:40.281458"], ["updated_at", "2015-03-31 03:49:40.281458"], ["id", 1], ["code", "1"], ["id", 1]]
1061
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1062
+  (2.1ms) rollback transaction
1063
+  (0.1ms) begin transaction
1064
+ ------------------------------
1065
+ Sms::NexmoTest: test_format_to
1066
+ ------------------------------
1067
+  (0.1ms) SAVEPOINT active_record_1
1068
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+9176288"], ["created_at", "2015-03-31 03:49:40.294597"], ["updated_at", "2015-03-31 03:49:40.294597"]]
1069
+ Mode: test. To: 9176288, text: simple+text
1070
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+9176288"], ["created_at", "2015-03-31 03:49:40.294597"], ["updated_at", "2015-03-31 03:49:40.294597"], ["id", 1], ["code", "1"], ["id", 1]]
1071
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1072
+  (0.6ms) rollback transaction
1073
+  (0.0ms) begin transaction
1074
+ -------------------------------
1075
+ SmsterTest: test_confirguration
1076
+ -------------------------------
1077
+  (0.0ms) rollback transaction
1078
+  (0.0ms) begin transaction
1079
+ --------------------------------
1080
+ Sms::ClickatellTest: test_create
1081
+ --------------------------------
1082
+  (0.0ms) SAVEPOINT active_record_1
1083
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "2556766"], ["created_at", "2015-03-31 03:49:40.306155"], ["updated_at", "2015-03-31 03:49:40.306155"]]
1084
+ Mode: test. To: 2556766, text: simple+text
1085
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "2556766"], ["created_at", "2015-03-31 03:49:40.306155"], ["updated_at", "2015-03-31 03:49:40.306155"], ["id", 1], ["code", "1"], ["id", 1]]
1086
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1087
+  (0.8ms) rollback transaction
1088
+  (0.1ms) begin transaction
1089
+ -----------------------------------
1090
+ Sms::ClickatellTest: test_format_to
1091
+ -----------------------------------
1092
+  (0.0ms) SAVEPOINT active_record_1
1093
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+5576896"], ["created_at", "2015-03-31 03:49:40.311372"], ["updated_at", "2015-03-31 03:49:40.311372"]]
1094
+ Mode: test. To: 5576896, text: simple+text
1095
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+5576896"], ["created_at", "2015-03-31 03:49:40.311372"], ["updated_at", "2015-03-31 03:49:40.311372"], ["id", 1], ["code", "1"], ["id", 1]]
1096
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1097
+  (0.6ms) rollback transaction
1098
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1099
+  (0.1ms) begin transaction
1100
+ --------------------------------
1101
+ Sms::ClickatellTest: test_create
1102
+ --------------------------------
1103
+  (0.1ms) SAVEPOINT active_record_1
1104
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "9837786"], ["created_at", "2015-03-31 03:50:20.685844"], ["updated_at", "2015-03-31 03:50:20.685844"]]
1105
+ Mode: test. To: 9837786, text: simple+text
1106
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "9837786"], ["created_at", "2015-03-31 03:50:20.685844"], ["updated_at", "2015-03-31 03:50:20.685844"], ["id", 1], ["code", "1"], ["id", 1]]
1107
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1108
+  (2.2ms) rollback transaction
1109
+  (0.1ms) begin transaction
1110
+ -----------------------------------
1111
+ Sms::ClickatellTest: test_format_to
1112
+ -----------------------------------
1113
+  (0.1ms) SAVEPOINT active_record_1
1114
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+4419127"], ["created_at", "2015-03-31 03:50:20.696343"], ["updated_at", "2015-03-31 03:50:20.696343"]]
1115
+ Mode: test. To: 4419127, text: simple+text
1116
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+4419127"], ["created_at", "2015-03-31 03:50:20.696343"], ["updated_at", "2015-03-31 03:50:20.696343"], ["id", 1], ["code", "1"], ["id", 1]]
1117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1118
+  (0.6ms) rollback transaction
1119
+  (0.1ms) begin transaction
1120
+ -----------------------------------------------
1121
+ Smster::ClickatellControllerTest: test_callback
1122
+ -----------------------------------------------
1123
+ Processing by Smster::ClickatellController#callback as HTML
1124
+ Completed 400 Bad Request in 0ms (ActiveRecord: 0.0ms)
1125
+  (0.1ms) rollback transaction
1126
+  (0.0ms) begin transaction
1127
+ ---------------------------
1128
+ Sms::NexmoTest: test_create
1129
+ ---------------------------
1130
+  (0.1ms) SAVEPOINT active_record_1
1131
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "8684887"], ["created_at", "2015-03-31 03:50:20.747050"], ["updated_at", "2015-03-31 03:50:20.747050"]]
1132
+ Mode: test. To: 8684887, text: simple+text
1133
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "8684887"], ["created_at", "2015-03-31 03:50:20.747050"], ["updated_at", "2015-03-31 03:50:20.747050"], ["id", 1], ["code", "1"], ["id", 1]]
1134
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1135
+  (0.6ms) rollback transaction
1136
+  (0.0ms) begin transaction
1137
+ ------------------------------
1138
+ Sms::NexmoTest: test_format_to
1139
+ ------------------------------
1140
+  (0.0ms) SAVEPOINT active_record_1
1141
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+8262658"], ["created_at", "2015-03-31 03:50:20.751342"], ["updated_at", "2015-03-31 03:50:20.751342"]]
1142
+ Mode: test. To: 8262658, text: simple+text
1143
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+8262658"], ["created_at", "2015-03-31 03:50:20.751342"], ["updated_at", "2015-03-31 03:50:20.751342"], ["id", 1], ["code", "1"], ["id", 1]]
1144
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1145
+  (0.6ms) rollback transaction
1146
+  (0.0ms) begin transaction
1147
+ -------------------------------
1148
+ SmsterTest: test_confirguration
1149
+ -------------------------------
1150
+  (0.0ms) rollback transaction
1151
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1152
+  (0.1ms) begin transaction
1153
+ -------------------------------
1154
+ SmsterTest: test_confirguration
1155
+ -------------------------------
1156
+  (0.0ms) rollback transaction
1157
+  (0.0ms) begin transaction
1158
+ ---------------------------
1159
+ Sms::NexmoTest: test_create
1160
+ ---------------------------
1161
+  (0.1ms) SAVEPOINT active_record_1
1162
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "1625233"], ["created_at", "2015-03-31 03:53:45.018032"], ["updated_at", "2015-03-31 03:53:45.018032"]]
1163
+ Mode: test. To: 1625233, text: simple+text
1164
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "1625233"], ["created_at", "2015-03-31 03:53:45.018032"], ["updated_at", "2015-03-31 03:53:45.018032"], ["id", 1], ["code", "1"], ["id", 1]]
1165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1166
+  (2.4ms) rollback transaction
1167
+  (0.1ms) begin transaction
1168
+ ------------------------------
1169
+ Sms::NexmoTest: test_format_to
1170
+ ------------------------------
1171
+  (0.1ms) SAVEPOINT active_record_1
1172
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+1634275"], ["created_at", "2015-03-31 03:53:45.028966"], ["updated_at", "2015-03-31 03:53:45.028966"]]
1173
+ Mode: test. To: 1634275, text: simple+text
1174
+ SQL (0.6ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+1634275"], ["created_at", "2015-03-31 03:53:45.028966"], ["updated_at", "2015-03-31 03:53:45.028966"], ["id", 1], ["code", "1"], ["id", 1]]
1175
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1176
+  (0.7ms) rollback transaction
1177
+  (0.1ms) begin transaction
1178
+ -----------------------------------------------
1179
+ Smster::ClickatellControllerTest: test_callback
1180
+ -----------------------------------------------
1181
+ Processing by Smster::ClickatellController#callback as HTML
1182
+ Completed 400 Bad Request in 0ms (ActiveRecord: 0.0ms)
1183
+  (0.1ms) rollback transaction
1184
+  (0.1ms) begin transaction
1185
+ --------------------------------
1186
+ Sms::ClickatellTest: test_create
1187
+ --------------------------------
1188
+  (0.1ms) SAVEPOINT active_record_1
1189
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "3317992"], ["created_at", "2015-03-31 03:53:45.080876"], ["updated_at", "2015-03-31 03:53:45.080876"]]
1190
+ Mode: test. To: 3317992, text: simple+text
1191
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "3317992"], ["created_at", "2015-03-31 03:53:45.080876"], ["updated_at", "2015-03-31 03:53:45.080876"], ["id", 1], ["code", "1"], ["id", 1]]
1192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1193
+  (0.8ms) rollback transaction
1194
+  (0.0ms) begin transaction
1195
+ -----------------------------------
1196
+ Sms::ClickatellTest: test_format_to
1197
+ -----------------------------------
1198
+  (0.0ms) SAVEPOINT active_record_1
1199
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+2461763"], ["created_at", "2015-03-31 03:53:45.085182"], ["updated_at", "2015-03-31 03:53:45.085182"]]
1200
+ Mode: test. To: 2461763, text: simple+text
1201
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+2461763"], ["created_at", "2015-03-31 03:53:45.085182"], ["updated_at", "2015-03-31 03:53:45.085182"], ["id", 1], ["code", "1"], ["id", 1]]
1202
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1203
+  (0.7ms) rollback transaction
1204
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1205
+  (0.1ms) begin transaction
1206
+ -----------------------------------------------
1207
+ Smster::ClickatellControllerTest: test_callback
1208
+ -----------------------------------------------
1209
+  (0.1ms) rollback transaction
1210
+  (0.1ms) begin transaction
1211
+ -----------------------------------
1212
+ Sms::ClickatellTest: test_format_to
1213
+ -----------------------------------
1214
+  (0.1ms) SAVEPOINT active_record_1
1215
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+8917326"], ["created_at", "2015-03-31 03:54:31.588574"], ["updated_at", "2015-03-31 03:54:31.588574"]]
1216
+ Mode: test. To: 8917326, text: simple+text
1217
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+8917326"], ["created_at", "2015-03-31 03:54:31.588574"], ["updated_at", "2015-03-31 03:54:31.588574"], ["id", 1], ["code", "1"], ["id", 1]]
1218
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1219
+  (1.9ms) rollback transaction
1220
+  (0.1ms) begin transaction
1221
+ --------------------------------
1222
+ Sms::ClickatellTest: test_create
1223
+ --------------------------------
1224
+  (0.0ms) SAVEPOINT active_record_1
1225
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "4782897"], ["created_at", "2015-03-31 03:54:31.600411"], ["updated_at", "2015-03-31 03:54:31.600411"]]
1226
+ Mode: test. To: 4782897, text: simple+text
1227
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "4782897"], ["created_at", "2015-03-31 03:54:31.600411"], ["updated_at", "2015-03-31 03:54:31.600411"], ["id", 1], ["code", "1"], ["id", 1]]
1228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1229
+  (0.6ms) rollback transaction
1230
+  (0.0ms) begin transaction
1231
+ ---------------------------
1232
+ Sms::NexmoTest: test_create
1233
+ ---------------------------
1234
+  (0.0ms) SAVEPOINT active_record_1
1235
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "4836615"], ["created_at", "2015-03-31 03:54:31.610405"], ["updated_at", "2015-03-31 03:54:31.610405"]]
1236
+ Mode: test. To: 4836615, text: simple+text
1237
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "4836615"], ["created_at", "2015-03-31 03:54:31.610405"], ["updated_at", "2015-03-31 03:54:31.610405"], ["id", 1], ["code", "1"], ["id", 1]]
1238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1239
+  (0.6ms) rollback transaction
1240
+  (0.0ms) begin transaction
1241
+ ------------------------------
1242
+ Sms::NexmoTest: test_format_to
1243
+ ------------------------------
1244
+  (0.0ms) SAVEPOINT active_record_1
1245
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+7613814"], ["created_at", "2015-03-31 03:54:31.614253"], ["updated_at", "2015-03-31 03:54:31.614253"]]
1246
+ Mode: test. To: 7613814, text: simple+text
1247
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+7613814"], ["created_at", "2015-03-31 03:54:31.614253"], ["updated_at", "2015-03-31 03:54:31.614253"], ["id", 1], ["code", "1"], ["id", 1]]
1248
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1249
+  (0.7ms) rollback transaction
1250
+  (0.1ms) begin transaction
1251
+ -------------------------------
1252
+ SmsterTest: test_confirguration
1253
+ -------------------------------
1254
+  (0.0ms) rollback transaction
1255
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1256
+  (0.1ms) begin transaction
1257
+ -------------------------------
1258
+ SmsterTest: test_confirguration
1259
+ -------------------------------
1260
+  (0.0ms) rollback transaction
1261
+  (0.0ms) begin transaction
1262
+ --------------------------------
1263
+ Sms::ClickatellTest: test_create
1264
+ --------------------------------
1265
+  (0.1ms) SAVEPOINT active_record_1
1266
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "4974836"], ["created_at", "2015-03-31 03:55:19.390370"], ["updated_at", "2015-03-31 03:55:19.390370"]]
1267
+ Mode: test. To: 4974836, text: simple+text
1268
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "4974836"], ["created_at", "2015-03-31 03:55:19.390370"], ["updated_at", "2015-03-31 03:55:19.390370"], ["id", 1], ["code", "1"], ["id", 1]]
1269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1270
+  (2.2ms) rollback transaction
1271
+  (0.1ms) begin transaction
1272
+ -----------------------------------
1273
+ Sms::ClickatellTest: test_format_to
1274
+ -----------------------------------
1275
+  (0.0ms) SAVEPOINT active_record_1
1276
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+9698751"], ["created_at", "2015-03-31 03:55:19.400901"], ["updated_at", "2015-03-31 03:55:19.400901"]]
1277
+ Mode: test. To: 9698751, text: simple+text
1278
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+9698751"], ["created_at", "2015-03-31 03:55:19.400901"], ["updated_at", "2015-03-31 03:55:19.400901"], ["id", 1], ["code", "1"], ["id", 1]]
1279
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1280
+  (0.6ms) rollback transaction
1281
+  (0.1ms) begin transaction
1282
+ ---------------------------
1283
+ Sms::NexmoTest: test_create
1284
+ ---------------------------
1285
+  (0.1ms) SAVEPOINT active_record_1
1286
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "9132129"], ["created_at", "2015-03-31 03:55:19.412912"], ["updated_at", "2015-03-31 03:55:19.412912"]]
1287
+ Mode: test. To: 9132129, text: simple+text
1288
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "9132129"], ["created_at", "2015-03-31 03:55:19.412912"], ["updated_at", "2015-03-31 03:55:19.412912"], ["id", 1], ["code", "1"], ["id", 1]]
1289
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1290
+  (0.5ms) rollback transaction
1291
+  (0.0ms) begin transaction
1292
+ ------------------------------
1293
+ Sms::NexmoTest: test_format_to
1294
+ ------------------------------
1295
+  (0.0ms) SAVEPOINT active_record_1
1296
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+9262349"], ["created_at", "2015-03-31 03:55:19.417014"], ["updated_at", "2015-03-31 03:55:19.417014"]]
1297
+ Mode: test. To: 9262349, text: simple+text
1298
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+9262349"], ["created_at", "2015-03-31 03:55:19.417014"], ["updated_at", "2015-03-31 03:55:19.417014"], ["id", 1], ["code", "1"], ["id", 1]]
1299
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1300
+  (0.5ms) rollback transaction
1301
+  (0.0ms) begin transaction
1302
+ -----------------------------------------------
1303
+ Smster::ClickatellControllerTest: test_callback
1304
+ -----------------------------------------------
1305
+  (0.1ms) rollback transaction
1306
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1307
+  (0.1ms) begin transaction
1308
+ -------------------------------
1309
+ SmsterTest: test_confirguration
1310
+ -------------------------------
1311
+  (0.0ms) rollback transaction
1312
+  (0.0ms) begin transaction
1313
+ -----------------------------------------------
1314
+ Smster::ClickatellControllerTest: test_callback
1315
+ -----------------------------------------------
1316
+  (0.1ms) rollback transaction
1317
+  (0.1ms) begin transaction
1318
+ ---------------------------
1319
+ Sms::NexmoTest: test_create
1320
+ ---------------------------
1321
+  (0.1ms) SAVEPOINT active_record_1
1322
+ SQL (0.7ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "2817385"], ["created_at", "2015-03-31 03:56:12.715859"], ["updated_at", "2015-03-31 03:56:12.715859"]]
1323
+ Mode: test. To: 2817385, text: simple+text
1324
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "2817385"], ["created_at", "2015-03-31 03:56:12.715859"], ["updated_at", "2015-03-31 03:56:12.715859"], ["id", 1], ["code", "1"], ["id", 1]]
1325
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1326
+  (2.3ms) rollback transaction
1327
+  (0.1ms) begin transaction
1328
+ ------------------------------
1329
+ Sms::NexmoTest: test_format_to
1330
+ ------------------------------
1331
+  (0.0ms) SAVEPOINT active_record_1
1332
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+6319675"], ["created_at", "2015-03-31 03:56:12.729411"], ["updated_at", "2015-03-31 03:56:12.729411"]]
1333
+ Mode: test. To: 6319675, text: simple+text
1334
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+6319675"], ["created_at", "2015-03-31 03:56:12.729411"], ["updated_at", "2015-03-31 03:56:12.729411"], ["id", 1], ["code", "1"], ["id", 1]]
1335
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1336
+  (0.7ms) rollback transaction
1337
+  (0.0ms) begin transaction
1338
+ --------------------------------
1339
+ Sms::ClickatellTest: test_create
1340
+ --------------------------------
1341
+  (0.1ms) SAVEPOINT active_record_1
1342
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "4868355"], ["created_at", "2015-03-31 03:56:12.740414"], ["updated_at", "2015-03-31 03:56:12.740414"]]
1343
+ Mode: test. To: 4868355, text: simple+text
1344
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "4868355"], ["created_at", "2015-03-31 03:56:12.740414"], ["updated_at", "2015-03-31 03:56:12.740414"], ["id", 1], ["code", "1"], ["id", 1]]
1345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1346
+  (0.7ms) rollback transaction
1347
+  (0.1ms) begin transaction
1348
+ -----------------------------------
1349
+ Sms::ClickatellTest: test_format_to
1350
+ -----------------------------------
1351
+  (0.0ms) SAVEPOINT active_record_1
1352
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+6881651"], ["created_at", "2015-03-31 03:56:12.745143"], ["updated_at", "2015-03-31 03:56:12.745143"]]
1353
+ Mode: test. To: 6881651, text: simple+text
1354
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+6881651"], ["created_at", "2015-03-31 03:56:12.745143"], ["updated_at", "2015-03-31 03:56:12.745143"], ["id", 1], ["code", "1"], ["id", 1]]
1355
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1356
+  (1.0ms) rollback transaction
1357
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1358
+  (0.1ms) begin transaction
1359
+ -----------------------------------------------
1360
+ Smster::ClickatellControllerTest: test_callback
1361
+ -----------------------------------------------
1362
+  (0.1ms) SAVEPOINT active_record_1
1363
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "8467453"], ["created_at", "2015-03-31 04:00:18.241828"], ["updated_at", "2015-03-31 04:00:18.241828"]]
1364
+ Mode: test. To: 8467453, text: simple+text
1365
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "8467453"], ["created_at", "2015-03-31 04:00:18.241828"], ["updated_at", "2015-03-31 04:00:18.241828"], ["id", 1], ["code", "1"], ["id", 1]]
1366
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1367
+ Processing by Smster::ClickatellController#callback as HTML
1368
+ Parameters: {"data"=>{"charge"=>"1.5", "messageStatus"=>"3", "description"=>"Received by recipient", "apiMessageId"=>"1"}}
1369
+ Sms::Clickatell Load (0.2ms) SELECT "smsters".* FROM "smsters" WHERE "smsters"."type" IN ('Sms::Clickatell') AND "smsters"."code" = ? LIMIT 1 [["code", "1"]]
1370
+  (0.0ms) SAVEPOINT active_record_1
1371
+ SQL (0.1ms) UPDATE "smsters" SET "status_message" = ?, "updated_at" = ? WHERE "smsters"."id" = ? [["status_message", "Received by recipient"], ["updated_at", "2015-03-31 04:00:18.257563"], ["id", 1]]
1372
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1373
+  (0.0ms) SAVEPOINT active_record_1
1374
+ SQL (0.1ms) UPDATE "smsters" SET "status" = ?, "updated_at" = ? WHERE "smsters"."id" = ? [["status", 2], ["updated_at", "2015-03-31 04:00:18.258948"], ["id", 1]]
1375
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1376
+ Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms)
1377
+  (0.7ms) rollback transaction
1378
+  (0.1ms) begin transaction
1379
+ --------------------------------
1380
+ Sms::ClickatellTest: test_create
1381
+ --------------------------------
1382
+  (0.0ms) SAVEPOINT active_record_1
1383
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "1531294"], ["created_at", "2015-03-31 04:00:18.262679"], ["updated_at", "2015-03-31 04:00:18.262679"]]
1384
+ Mode: test. To: 1531294, text: simple+text
1385
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "1531294"], ["created_at", "2015-03-31 04:00:18.262679"], ["updated_at", "2015-03-31 04:00:18.262679"], ["id", 1], ["code", "1"], ["id", 1]]
1386
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1387
+  (0.6ms) rollback transaction
1388
+  (0.0ms) begin transaction
1389
+ -----------------------------------
1390
+ Sms::ClickatellTest: test_format_to
1391
+ -----------------------------------
1392
+  (0.0ms) SAVEPOINT active_record_1
1393
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+7371324"], ["created_at", "2015-03-31 04:00:18.266333"], ["updated_at", "2015-03-31 04:00:18.266333"]]
1394
+ Mode: test. To: 7371324, text: simple+text
1395
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+7371324"], ["created_at", "2015-03-31 04:00:18.266333"], ["updated_at", "2015-03-31 04:00:18.266333"], ["id", 1], ["code", "1"], ["id", 1]]
1396
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1397
+  (0.6ms) rollback transaction
1398
+  (0.0ms) begin transaction
1399
+ -------------------------------
1400
+ SmsterTest: test_confirguration
1401
+ -------------------------------
1402
+  (0.0ms) rollback transaction
1403
+  (0.0ms) begin transaction
1404
+ ---------------------------
1405
+ Sms::NexmoTest: test_create
1406
+ ---------------------------
1407
+  (0.1ms) SAVEPOINT active_record_1
1408
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "1181584"], ["created_at", "2015-03-31 04:00:18.276722"], ["updated_at", "2015-03-31 04:00:18.276722"]]
1409
+ Mode: test. To: 1181584, text: simple+text
1410
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "1181584"], ["created_at", "2015-03-31 04:00:18.276722"], ["updated_at", "2015-03-31 04:00:18.276722"], ["id", 1], ["code", "1"], ["id", 1]]
1411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1412
+  (0.8ms) rollback transaction
1413
+  (0.0ms) begin transaction
1414
+ ------------------------------
1415
+ Sms::NexmoTest: test_format_to
1416
+ ------------------------------
1417
+  (0.0ms) SAVEPOINT active_record_1
1418
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+9771778"], ["created_at", "2015-03-31 04:00:18.280895"], ["updated_at", "2015-03-31 04:00:18.280895"]]
1419
+ Mode: test. To: 9771778, text: simple+text
1420
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+9771778"], ["created_at", "2015-03-31 04:00:18.280895"], ["updated_at", "2015-03-31 04:00:18.280895"], ["id", 1], ["code", "1"], ["id", 1]]
1421
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1422
+  (0.7ms) rollback transaction
1423
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1424
+  (0.1ms) begin transaction
1425
+ ------------------------------
1426
+ Sms::NexmoTest: test_format_to
1427
+ ------------------------------
1428
+  (0.1ms) SAVEPOINT active_record_1
1429
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+7964527"], ["created_at", "2015-03-31 04:01:06.682552"], ["updated_at", "2015-03-31 04:01:06.682552"]]
1430
+ Mode: test. To: 7964527, text: simple+text
1431
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+7964527"], ["created_at", "2015-03-31 04:01:06.682552"], ["updated_at", "2015-03-31 04:01:06.682552"], ["id", 1], ["code", "1"], ["id", 1]]
1432
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1433
+  (2.2ms) rollback transaction
1434
+  (0.1ms) begin transaction
1435
+ ---------------------------
1436
+ Sms::NexmoTest: test_create
1437
+ ---------------------------
1438
+  (0.0ms) SAVEPOINT active_record_1
1439
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "9671875"], ["created_at", "2015-03-31 04:01:06.693266"], ["updated_at", "2015-03-31 04:01:06.693266"]]
1440
+ Mode: test. To: 9671875, text: simple+text
1441
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "9671875"], ["created_at", "2015-03-31 04:01:06.693266"], ["updated_at", "2015-03-31 04:01:06.693266"], ["id", 1], ["code", "1"], ["id", 1]]
1442
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1443
+  (0.8ms) rollback transaction
1444
+  (0.1ms) begin transaction
1445
+ -------------------------------
1446
+ SmsterTest: test_confirguration
1447
+ -------------------------------
1448
+  (0.0ms) rollback transaction
1449
+  (0.1ms) begin transaction
1450
+ -----------------------------------------------
1451
+ Smster::ClickatellControllerTest: test_callback
1452
+ -----------------------------------------------
1453
+  (0.1ms) rollback transaction
1454
+  (0.0ms) begin transaction
1455
+ --------------------------------
1456
+ Sms::ClickatellTest: test_create
1457
+ --------------------------------
1458
+  (0.1ms) SAVEPOINT active_record_1
1459
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "3369217"], ["created_at", "2015-03-31 04:01:06.745107"], ["updated_at", "2015-03-31 04:01:06.745107"]]
1460
+ Mode: test. To: 3369217, text: simple+text
1461
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "3369217"], ["created_at", "2015-03-31 04:01:06.745107"], ["updated_at", "2015-03-31 04:01:06.745107"], ["id", 1], ["code", "1"], ["id", 1]]
1462
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1463
+  (0.7ms) rollback transaction
1464
+  (0.1ms) begin transaction
1465
+ -----------------------------------
1466
+ Sms::ClickatellTest: test_format_to
1467
+ -----------------------------------
1468
+  (0.0ms) SAVEPOINT active_record_1
1469
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+2724959"], ["created_at", "2015-03-31 04:01:06.749469"], ["updated_at", "2015-03-31 04:01:06.749469"]]
1470
+ Mode: test. To: 2724959, text: simple+text
1471
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+2724959"], ["created_at", "2015-03-31 04:01:06.749469"], ["updated_at", "2015-03-31 04:01:06.749469"], ["id", 1], ["code", "1"], ["id", 1]]
1472
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1473
+  (0.6ms) rollback transaction
1474
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1475
+  (0.1ms) begin transaction
1476
+ -------------------------------
1477
+ SmsterTest: test_confirguration
1478
+ -------------------------------
1479
+  (0.0ms) rollback transaction
1480
+  (0.0ms) begin transaction
1481
+ -----------------------------------
1482
+ Sms::ClickatellTest: test_format_to
1483
+ -----------------------------------
1484
+  (0.1ms) SAVEPOINT active_record_1
1485
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+4182636"], ["created_at", "2015-03-31 04:01:22.382699"], ["updated_at", "2015-03-31 04:01:22.382699"]]
1486
+ Mode: test. To: 4182636, text: simple+text
1487
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+4182636"], ["created_at", "2015-03-31 04:01:22.382699"], ["updated_at", "2015-03-31 04:01:22.382699"], ["id", 1], ["code", "1"], ["id", 1]]
1488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1489
+  (2.1ms) rollback transaction
1490
+  (0.1ms) begin transaction
1491
+ --------------------------------
1492
+ Sms::ClickatellTest: test_create
1493
+ --------------------------------
1494
+  (0.0ms) SAVEPOINT active_record_1
1495
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "8838267"], ["created_at", "2015-03-31 04:01:22.392940"], ["updated_at", "2015-03-31 04:01:22.392940"]]
1496
+ Mode: test. To: 8838267, text: simple+text
1497
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "8838267"], ["created_at", "2015-03-31 04:01:22.392940"], ["updated_at", "2015-03-31 04:01:22.392940"], ["id", 1], ["code", "1"], ["id", 1]]
1498
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1499
+  (0.7ms) rollback transaction
1500
+  (0.1ms) begin transaction
1501
+ ---------------------------
1502
+ Sms::NexmoTest: test_create
1503
+ ---------------------------
1504
+  (0.1ms) SAVEPOINT active_record_1
1505
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "6131884"], ["created_at", "2015-03-31 04:01:22.404775"], ["updated_at", "2015-03-31 04:01:22.404775"]]
1506
+ Mode: test. To: 6131884, text: simple+text
1507
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "6131884"], ["created_at", "2015-03-31 04:01:22.404775"], ["updated_at", "2015-03-31 04:01:22.404775"], ["id", 1], ["code", "1"], ["id", 1]]
1508
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1509
+  (0.7ms) rollback transaction
1510
+  (0.0ms) begin transaction
1511
+ ------------------------------
1512
+ Sms::NexmoTest: test_format_to
1513
+ ------------------------------
1514
+  (0.0ms) SAVEPOINT active_record_1
1515
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+5144794"], ["created_at", "2015-03-31 04:01:22.409554"], ["updated_at", "2015-03-31 04:01:22.409554"]]
1516
+ Mode: test. To: 5144794, text: simple+text
1517
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+5144794"], ["created_at", "2015-03-31 04:01:22.409554"], ["updated_at", "2015-03-31 04:01:22.409554"], ["id", 1], ["code", "1"], ["id", 1]]
1518
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1519
+  (0.5ms) rollback transaction
1520
+  (0.0ms) begin transaction
1521
+ -----------------------------------------------
1522
+ Smster::ClickatellControllerTest: test_callback
1523
+ -----------------------------------------------
1524
+  (0.1ms) SAVEPOINT active_record_1
1525
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "3599128"], ["created_at", "2015-03-31 04:01:22.449996"], ["updated_at", "2015-03-31 04:01:22.449996"]]
1526
+ Mode: test. To: 3599128, text: simple+text
1527
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "3599128"], ["created_at", "2015-03-31 04:01:22.449996"], ["updated_at", "2015-03-31 04:01:22.449996"], ["id", 1], ["code", "1"], ["id", 1]]
1528
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1529
+ Processing by Smster::ClickatellController#callback as HTML
1530
+ Parameters: {"data"=>{"charge"=>"1.5", "messageStatus"=>"3", "description"=>"Received by recipient", "apiMessageId"=>"1"}}
1531
+ Sms::Clickatell Load (0.1ms) SELECT "smsters".* FROM "smsters" WHERE "smsters"."type" IN ('Sms::Clickatell') AND "smsters"."code" = ? LIMIT 1 [["code", "1"]]
1532
+  (0.0ms) SAVEPOINT active_record_1
1533
+ SQL (0.1ms) UPDATE "smsters" SET "status_message" = ?, "updated_at" = ? WHERE "smsters"."id" = ? [["status_message", "Received by recipient"], ["updated_at", "2015-03-31 04:01:22.457762"], ["id", 1]]
1534
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1535
+  (0.0ms) SAVEPOINT active_record_1
1536
+ SQL (0.1ms) UPDATE "smsters" SET "status" = ?, "updated_at" = ? WHERE "smsters"."id" = ? [["status", 2], ["updated_at", "2015-03-31 04:01:22.459140"], ["id", 1]]
1537
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1538
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.5ms)
1539
+  (0.7ms) rollback transaction
1540
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1541
+  (0.1ms) begin transaction
1542
+ -------------------------------
1543
+ SmsterTest: test_confirguration
1544
+ -------------------------------
1545
+  (0.0ms) rollback transaction
1546
+  (0.0ms) begin transaction
1547
+ -----------------------------------------------
1548
+ Smster::ClickatellControllerTest: test_callback
1549
+ -----------------------------------------------
1550
+  (0.1ms) SAVEPOINT active_record_1
1551
+ SQL (0.5ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "3739744"], ["created_at", "2015-03-31 04:01:40.716331"], ["updated_at", "2015-03-31 04:01:40.716331"]]
1552
+ Mode: test. To: 3739744, text: simple+text
1553
+ SQL (0.9ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "3739744"], ["created_at", "2015-03-31 04:01:40.716331"], ["updated_at", "2015-03-31 04:01:40.716331"], ["id", 1], ["code", "1"], ["id", 1]]
1554
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1555
+ Processing by Smster::ClickatellController#callback as HTML
1556
+ Parameters: {"data"=>{"charge"=>"1.5", "messageStatus"=>"3", "description"=>"Received by recipient", "apiMessageId"=>"1"}}
1557
+ Sms::Clickatell Load (0.2ms) SELECT "smsters".* FROM "smsters" WHERE "smsters"."type" IN ('Sms::Clickatell') AND "smsters"."code" = ? LIMIT 1 [["code", "1"]]
1558
+  (0.0ms) SAVEPOINT active_record_1
1559
+ SQL (0.1ms) UPDATE "smsters" SET "status_message" = ?, "updated_at" = ? WHERE "smsters"."id" = ? [["status_message", "Received by recipient"], ["updated_at", "2015-03-31 04:01:40.734937"], ["id", 1]]
1560
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1561
+  (0.0ms) SAVEPOINT active_record_1
1562
+ SQL (0.1ms) UPDATE "smsters" SET "status" = ?, "updated_at" = ? WHERE "smsters"."id" = ? [["status", 2], ["updated_at", "2015-03-31 04:01:40.736368"], ["id", 1]]
1563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1564
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.5ms)
1565
+  (2.3ms) rollback transaction
1566
+  (0.1ms) begin transaction
1567
+ ---------------------------
1568
+ Sms::NexmoTest: test_create
1569
+ ---------------------------
1570
+  (0.1ms) SAVEPOINT active_record_1
1571
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "3888442"], ["created_at", "2015-03-31 04:01:40.747641"], ["updated_at", "2015-03-31 04:01:40.747641"]]
1572
+ Mode: test. To: 3888442, text: simple+text
1573
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "3888442"], ["created_at", "2015-03-31 04:01:40.747641"], ["updated_at", "2015-03-31 04:01:40.747641"], ["id", 1], ["code", "1"], ["id", 1]]
1574
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1575
+  (0.8ms) rollback transaction
1576
+  (0.1ms) begin transaction
1577
+ ------------------------------
1578
+ Sms::NexmoTest: test_format_to
1579
+ ------------------------------
1580
+  (0.1ms) SAVEPOINT active_record_1
1581
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+6953659"], ["created_at", "2015-03-31 04:01:40.753331"], ["updated_at", "2015-03-31 04:01:40.753331"]]
1582
+ Mode: test. To: 6953659, text: simple+text
1583
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+6953659"], ["created_at", "2015-03-31 04:01:40.753331"], ["updated_at", "2015-03-31 04:01:40.753331"], ["id", 1], ["code", "1"], ["id", 1]]
1584
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1585
+  (0.7ms) rollback transaction
1586
+  (0.1ms) begin transaction
1587
+ --------------------------------
1588
+ Sms::ClickatellTest: test_create
1589
+ --------------------------------
1590
+  (0.0ms) SAVEPOINT active_record_1
1591
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "8389211"], ["created_at", "2015-03-31 04:01:40.759056"], ["updated_at", "2015-03-31 04:01:40.759056"]]
1592
+ Mode: test. To: 8389211, text: simple+text
1593
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "8389211"], ["created_at", "2015-03-31 04:01:40.759056"], ["updated_at", "2015-03-31 04:01:40.759056"], ["id", 1], ["code", "1"], ["id", 1]]
1594
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1595
+  (0.7ms) rollback transaction
1596
+  (0.0ms) begin transaction
1597
+ -----------------------------------
1598
+ Sms::ClickatellTest: test_format_to
1599
+ -----------------------------------
1600
+  (0.0ms) SAVEPOINT active_record_1
1601
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+2456516"], ["created_at", "2015-03-31 04:01:40.763752"], ["updated_at", "2015-03-31 04:01:40.763752"]]
1602
+ Mode: test. To: 2456516, text: simple+text
1603
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+2456516"], ["created_at", "2015-03-31 04:01:40.763752"], ["updated_at", "2015-03-31 04:01:40.763752"], ["id", 1], ["code", "1"], ["id", 1]]
1604
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1605
+  (0.6ms) rollback transaction
1606
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1607
+  (0.1ms) begin transaction
1608
+ -----------------------------------------------
1609
+ Smster::ClickatellControllerTest: test_callback
1610
+ -----------------------------------------------
1611
+  (0.1ms) SAVEPOINT active_record_1
1612
+ SQL (0.5ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "2586396"], ["created_at", "2015-03-31 04:02:14.558387"], ["updated_at", "2015-03-31 04:02:14.558387"]]
1613
+ Mode: test. To: 2586396, text: simple+text
1614
+ SQL (0.7ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "2586396"], ["created_at", "2015-03-31 04:02:14.558387"], ["updated_at", "2015-03-31 04:02:14.558387"], ["id", 1], ["code", "1"], ["id", 1]]
1615
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1616
+ Processing by Smster::ClickatellController#callback as HTML
1617
+ Parameters: {"data"=>{"charge"=>"1.5", "messageStatus"=>"3", "description"=>"Received by recipient", "apiMessageId"=>"1"}}
1618
+ Sms::Clickatell Load (0.2ms) SELECT "smsters".* FROM "smsters" WHERE "smsters"."type" IN ('Sms::Clickatell') AND "smsters"."code" = ? LIMIT 1 [["code", "1"]]
1619
+  (0.0ms) SAVEPOINT active_record_1
1620
+ SQL (0.1ms) UPDATE "smsters" SET "status_message" = ?, "updated_at" = ? WHERE "smsters"."id" = ? [["status_message", "Received by recipient"], ["updated_at", "2015-03-31 04:02:14.576125"], ["id", 1]]
1621
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1622
+  (0.0ms) SAVEPOINT active_record_1
1623
+ SQL (0.1ms) UPDATE "smsters" SET "status" = ?, "updated_at" = ? WHERE "smsters"."id" = ? [["status", 2], ["updated_at", "2015-03-31 04:02:14.577508"], ["id", 1]]
1624
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1625
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.5ms)
1626
+  (2.3ms) rollback transaction
1627
+  (0.1ms) begin transaction
1628
+ --------------------------------
1629
+ Sms::ClickatellTest: test_create
1630
+ --------------------------------
1631
+  (0.0ms) SAVEPOINT active_record_1
1632
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "8264569"], ["created_at", "2015-03-31 04:02:14.582815"], ["updated_at", "2015-03-31 04:02:14.582815"]]
1633
+ Mode: test. To: 8264569, text: simple+text
1634
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "8264569"], ["created_at", "2015-03-31 04:02:14.582815"], ["updated_at", "2015-03-31 04:02:14.582815"], ["id", 1], ["code", "1"], ["id", 1]]
1635
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1636
+  (0.6ms) rollback transaction
1637
+  (0.1ms) begin transaction
1638
+ -----------------------------------
1639
+ Sms::ClickatellTest: test_format_to
1640
+ -----------------------------------
1641
+  (0.0ms) SAVEPOINT active_record_1
1642
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+1199234"], ["created_at", "2015-03-31 04:02:14.586781"], ["updated_at", "2015-03-31 04:02:14.586781"]]
1643
+ Mode: test. To: 1199234, text: simple+text
1644
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+1199234"], ["created_at", "2015-03-31 04:02:14.586781"], ["updated_at", "2015-03-31 04:02:14.586781"], ["id", 1], ["code", "1"], ["id", 1]]
1645
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1646
+  (0.6ms) rollback transaction
1647
+  (0.0ms) begin transaction
1648
+ ------------------------------------------
1649
+ Smster::NexmoControllerTest: test_callback
1650
+ ------------------------------------------
1651
+  (0.1ms) rollback transaction
1652
+  (0.0ms) begin transaction
1653
+ ---------------------------
1654
+ Sms::NexmoTest: test_create
1655
+ ---------------------------
1656
+  (0.1ms) SAVEPOINT active_record_1
1657
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "8219258"], ["created_at", "2015-03-31 04:02:14.601583"], ["updated_at", "2015-03-31 04:02:14.601583"]]
1658
+ Mode: test. To: 8219258, text: simple+text
1659
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "8219258"], ["created_at", "2015-03-31 04:02:14.601583"], ["updated_at", "2015-03-31 04:02:14.601583"], ["id", 1], ["code", "1"], ["id", 1]]
1660
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1661
+  (0.7ms) rollback transaction
1662
+  (0.0ms) begin transaction
1663
+ ------------------------------
1664
+ Sms::NexmoTest: test_format_to
1665
+ ------------------------------
1666
+  (0.0ms) SAVEPOINT active_record_1
1667
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+4446489"], ["created_at", "2015-03-31 04:02:14.605861"], ["updated_at", "2015-03-31 04:02:14.605861"]]
1668
+ Mode: test. To: 4446489, text: simple+text
1669
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+4446489"], ["created_at", "2015-03-31 04:02:14.605861"], ["updated_at", "2015-03-31 04:02:14.605861"], ["id", 1], ["code", "1"], ["id", 1]]
1670
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1671
+  (0.6ms) rollback transaction
1672
+  (0.0ms) begin transaction
1673
+ -------------------------------
1674
+ SmsterTest: test_confirguration
1675
+ -------------------------------
1676
+  (0.0ms) rollback transaction
1677
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1678
+  (0.1ms) begin transaction
1679
+ -----------------------------------------------
1680
+ Smster::ClickatellControllerTest: test_callback
1681
+ -----------------------------------------------
1682
+  (0.1ms) SAVEPOINT active_record_1
1683
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "7381545"], ["created_at", "2015-03-31 04:02:23.864808"], ["updated_at", "2015-03-31 04:02:23.864808"]]
1684
+ Mode: test. To: 7381545, text: simple+text
1685
+ SQL (0.4ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "7381545"], ["created_at", "2015-03-31 04:02:23.864808"], ["updated_at", "2015-03-31 04:02:23.864808"], ["id", 1], ["code", "1"], ["id", 1]]
1686
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1687
+ Processing by Smster::ClickatellController#callback as HTML
1688
+ Parameters: {"data"=>{"charge"=>"1.5", "messageStatus"=>"3", "description"=>"Received by recipient", "apiMessageId"=>"1"}}
1689
+ Sms::Clickatell Load (0.1ms) SELECT "smsters".* FROM "smsters" WHERE "smsters"."type" IN ('Sms::Clickatell') AND "smsters"."code" = ? LIMIT 1 [["code", "1"]]
1690
+  (0.0ms) SAVEPOINT active_record_1
1691
+ SQL (0.1ms) UPDATE "smsters" SET "status_message" = ?, "updated_at" = ? WHERE "smsters"."id" = ? [["status_message", "Received by recipient"], ["updated_at", "2015-03-31 04:02:23.878217"], ["id", 1]]
1692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1693
+  (0.0ms) SAVEPOINT active_record_1
1694
+ SQL (0.1ms) UPDATE "smsters" SET "status" = ?, "updated_at" = ? WHERE "smsters"."id" = ? [["status", 2], ["updated_at", "2015-03-31 04:02:23.879487"], ["id", 1]]
1695
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1696
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.5ms)
1697
+  (2.3ms) rollback transaction
1698
+  (0.1ms) begin transaction
1699
+ ------------------------------------------
1700
+ Smster::NexmoControllerTest: test_callback
1701
+ ------------------------------------------
1702
+  (0.1ms) SAVEPOINT active_record_1
1703
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "1448755"], ["created_at", "2015-03-31 04:02:23.893625"], ["updated_at", "2015-03-31 04:02:23.893625"]]
1704
+ Mode: test. To: 1448755, text: simple+text
1705
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "1448755"], ["created_at", "2015-03-31 04:02:23.893625"], ["updated_at", "2015-03-31 04:02:23.893625"], ["id", 1], ["code", "1"], ["id", 1]]
1706
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1707
+  (0.6ms) rollback transaction
1708
+  (0.1ms) begin transaction
1709
+ -------------------------------
1710
+ SmsterTest: test_confirguration
1711
+ -------------------------------
1712
+  (0.0ms) rollback transaction
1713
+  (0.0ms) begin transaction
1714
+ ------------------------------
1715
+ Sms::NexmoTest: test_format_to
1716
+ ------------------------------
1717
+  (0.0ms) SAVEPOINT active_record_1
1718
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+5325427"], ["created_at", "2015-03-31 04:02:23.899657"], ["updated_at", "2015-03-31 04:02:23.899657"]]
1719
+ Mode: test. To: 5325427, text: simple+text
1720
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+5325427"], ["created_at", "2015-03-31 04:02:23.899657"], ["updated_at", "2015-03-31 04:02:23.899657"], ["id", 1], ["code", "1"], ["id", 1]]
1721
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1722
+  (0.6ms) rollback transaction
1723
+  (0.1ms) begin transaction
1724
+ ---------------------------
1725
+ Sms::NexmoTest: test_create
1726
+ ---------------------------
1727
+  (0.0ms) SAVEPOINT active_record_1
1728
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "2633573"], ["created_at", "2015-03-31 04:02:23.903288"], ["updated_at", "2015-03-31 04:02:23.903288"]]
1729
+ Mode: test. To: 2633573, text: simple+text
1730
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "2633573"], ["created_at", "2015-03-31 04:02:23.903288"], ["updated_at", "2015-03-31 04:02:23.903288"], ["id", 1], ["code", "1"], ["id", 1]]
1731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1732
+  (0.6ms) rollback transaction
1733
+  (0.0ms) begin transaction
1734
+ --------------------------------
1735
+ Sms::ClickatellTest: test_create
1736
+ --------------------------------
1737
+  (0.0ms) SAVEPOINT active_record_1
1738
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "5899478"], ["created_at", "2015-03-31 04:02:23.907136"], ["updated_at", "2015-03-31 04:02:23.907136"]]
1739
+ Mode: test. To: 5899478, text: simple+text
1740
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "5899478"], ["created_at", "2015-03-31 04:02:23.907136"], ["updated_at", "2015-03-31 04:02:23.907136"], ["id", 1], ["code", "1"], ["id", 1]]
1741
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1742
+  (0.6ms) rollback transaction
1743
+  (0.0ms) begin transaction
1744
+ -----------------------------------
1745
+ Sms::ClickatellTest: test_format_to
1746
+ -----------------------------------
1747
+  (0.0ms) SAVEPOINT active_record_1
1748
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+9659277"], ["created_at", "2015-03-31 04:02:23.910900"], ["updated_at", "2015-03-31 04:02:23.910900"]]
1749
+ Mode: test. To: 9659277, text: simple+text
1750
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+9659277"], ["created_at", "2015-03-31 04:02:23.910900"], ["updated_at", "2015-03-31 04:02:23.910900"], ["id", 1], ["code", "1"], ["id", 1]]
1751
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1752
+  (0.6ms) rollback transaction
1753
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1754
+  (0.1ms) begin transaction
1755
+ -------------------------------
1756
+ SmsterTest: test_confirguration
1757
+ -------------------------------
1758
+  (0.0ms) rollback transaction
1759
+  (0.0ms) begin transaction
1760
+ --------------------------------
1761
+ Sms::ClickatellTest: test_create
1762
+ --------------------------------
1763
+  (0.1ms) SAVEPOINT active_record_1
1764
+ SQL (0.4ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "9125213"], ["created_at", "2015-03-31 04:02:37.303819"], ["updated_at", "2015-03-31 04:02:37.303819"]]
1765
+ Mode: test. To: 9125213, text: simple+text
1766
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "9125213"], ["created_at", "2015-03-31 04:02:37.303819"], ["updated_at", "2015-03-31 04:02:37.303819"], ["id", 1], ["code", "1"], ["id", 1]]
1767
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1768
+  (2.3ms) rollback transaction
1769
+  (0.1ms) begin transaction
1770
+ -----------------------------------
1771
+ Sms::ClickatellTest: test_format_to
1772
+ -----------------------------------
1773
+  (0.0ms) SAVEPOINT active_record_1
1774
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+4244341"], ["created_at", "2015-03-31 04:02:37.314336"], ["updated_at", "2015-03-31 04:02:37.314336"]]
1775
+ Mode: test. To: 4244341, text: simple+text
1776
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+4244341"], ["created_at", "2015-03-31 04:02:37.314336"], ["updated_at", "2015-03-31 04:02:37.314336"], ["id", 1], ["code", "1"], ["id", 1]]
1777
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1778
+  (0.6ms) rollback transaction
1779
+  (0.1ms) begin transaction
1780
+ ---------------------------
1781
+ Sms::NexmoTest: test_create
1782
+ ---------------------------
1783
+  (0.1ms) SAVEPOINT active_record_1
1784
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "2131276"], ["created_at", "2015-03-31 04:02:37.325811"], ["updated_at", "2015-03-31 04:02:37.325811"]]
1785
+ Mode: test. To: 2131276, text: simple+text
1786
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "2131276"], ["created_at", "2015-03-31 04:02:37.325811"], ["updated_at", "2015-03-31 04:02:37.325811"], ["id", 1], ["code", "1"], ["id", 1]]
1787
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1788
+  (0.6ms) rollback transaction
1789
+  (0.0ms) begin transaction
1790
+ ------------------------------
1791
+ Sms::NexmoTest: test_format_to
1792
+ ------------------------------
1793
+  (0.0ms) SAVEPOINT active_record_1
1794
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+2474617"], ["created_at", "2015-03-31 04:02:37.330679"], ["updated_at", "2015-03-31 04:02:37.330679"]]
1795
+ Mode: test. To: 2474617, text: simple+text
1796
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+2474617"], ["created_at", "2015-03-31 04:02:37.330679"], ["updated_at", "2015-03-31 04:02:37.330679"], ["id", 1], ["code", "1"], ["id", 1]]
1797
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1798
+  (0.5ms) rollback transaction
1799
+  (0.0ms) begin transaction
1800
+ ------------------------------------------
1801
+ Smster::NexmoControllerTest: test_callback
1802
+ ------------------------------------------
1803
+  (0.1ms) SAVEPOINT active_record_1
1804
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "9243317"], ["created_at", "2015-03-31 04:02:37.366596"], ["updated_at", "2015-03-31 04:02:37.366596"]]
1805
+ Mode: test. To: 9243317, text: simple+text
1806
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "9243317"], ["created_at", "2015-03-31 04:02:37.366596"], ["updated_at", "2015-03-31 04:02:37.366596"], ["id", 1], ["code", "1"], ["id", 1]]
1807
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1808
+ Processing by Smster::NexmoController#callback as HTML
1809
+ Parameters: {"data"=>{"charge"=>"1.5", "messageStatus"=>"3", "description"=>"Received by recipient", "apiMessageId"=>"1"}}
1810
+ Sms::Nexmo Load (0.1ms) SELECT "smsters".* FROM "smsters" WHERE "smsters"."type" IN ('Sms::Nexmo') AND "smsters"."code" IS NULL LIMIT 1
1811
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms)
1812
+  (0.7ms) rollback transaction
1813
+  (0.0ms) begin transaction
1814
+ -----------------------------------------------
1815
+ Smster::ClickatellControllerTest: test_callback
1816
+ -----------------------------------------------
1817
+  (0.1ms) SAVEPOINT active_record_1
1818
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "1749494"], ["created_at", "2015-03-31 04:02:37.378589"], ["updated_at", "2015-03-31 04:02:37.378589"]]
1819
+ Mode: test. To: 1749494, text: simple+text
1820
+ SQL (0.5ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "1749494"], ["created_at", "2015-03-31 04:02:37.378589"], ["updated_at", "2015-03-31 04:02:37.378589"], ["id", 1], ["code", "1"], ["id", 1]]
1821
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1822
+ Processing by Smster::ClickatellController#callback as HTML
1823
+ Parameters: {"data"=>{"charge"=>"1.5", "messageStatus"=>"3", "description"=>"Received by recipient", "apiMessageId"=>"1"}}
1824
+ Sms::Clickatell Load (0.2ms) SELECT "smsters".* FROM "smsters" WHERE "smsters"."type" IN ('Sms::Clickatell') AND "smsters"."code" = ? LIMIT 1 [["code", "1"]]
1825
+  (0.0ms) SAVEPOINT active_record_1
1826
+ SQL (0.1ms) UPDATE "smsters" SET "status_message" = ?, "updated_at" = ? WHERE "smsters"."id" = ? [["status_message", "Received by recipient"], ["updated_at", "2015-03-31 04:02:37.385329"], ["id", 1]]
1827
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1828
+  (0.0ms) SAVEPOINT active_record_1
1829
+ SQL (0.1ms) UPDATE "smsters" SET "status" = ?, "updated_at" = ? WHERE "smsters"."id" = ? [["status", 2], ["updated_at", "2015-03-31 04:02:37.386678"], ["id", 1]]
1830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1831
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.5ms)
1832
+  (0.8ms) rollback transaction
1833
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1834
+  (0.1ms) begin transaction
1835
+ ------------------------------------------
1836
+ Smster::NexmoControllerTest: test_callback
1837
+ ------------------------------------------
1838
+  (0.1ms) SAVEPOINT active_record_1
1839
+ SQL (0.5ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "6643793"], ["created_at", "2015-03-31 04:03:26.925512"], ["updated_at", "2015-03-31 04:03:26.925512"]]
1840
+ Mode: test. To: 6643793, text: simple+text
1841
+ SQL (0.6ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "6643793"], ["created_at", "2015-03-31 04:03:26.925512"], ["updated_at", "2015-03-31 04:03:26.925512"], ["id", 1], ["code", "1"], ["id", 1]]
1842
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1843
+ Processing by Smster::NexmoController#callback as HTML
1844
+ Parameters: {"messageId"=>"1", "status"=>"delivered"}
1845
+ Sms::Nexmo Load (0.1ms) SELECT "smsters".* FROM "smsters" WHERE "smsters"."type" IN ('Sms::Nexmo') AND "smsters"."code" = ? LIMIT 1 [["code", "1"]]
1846
+  (0.0ms) SAVEPOINT active_record_1
1847
+ SQL (0.1ms) UPDATE "smsters" SET "status_message" = ?, "updated_at" = ? WHERE "smsters"."id" = ? [["status_message", "delivered"], ["updated_at", "2015-03-31 04:03:26.941460"], ["id", 1]]
1848
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1849
+  (0.0ms) SAVEPOINT active_record_1
1850
+ SQL (0.1ms) UPDATE "smsters" SET "status" = ?, "updated_at" = ? WHERE "smsters"."id" = ? [["status", 2], ["updated_at", "2015-03-31 04:03:26.942747"], ["id", 1]]
1851
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1852
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.5ms)
1853
+  (2.3ms) rollback transaction
1854
+  (0.1ms) begin transaction
1855
+ --------------------------------
1856
+ Sms::ClickatellTest: test_create
1857
+ --------------------------------
1858
+  (0.0ms) SAVEPOINT active_record_1
1859
+ SQL (0.3ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "9721245"], ["created_at", "2015-03-31 04:03:26.953668"], ["updated_at", "2015-03-31 04:03:26.953668"]]
1860
+ Mode: test. To: 9721245, text: simple+text
1861
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "9721245"], ["created_at", "2015-03-31 04:03:26.953668"], ["updated_at", "2015-03-31 04:03:26.953668"], ["id", 1], ["code", "1"], ["id", 1]]
1862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1863
+  (0.7ms) rollback transaction
1864
+  (0.1ms) begin transaction
1865
+ -----------------------------------
1866
+ Sms::ClickatellTest: test_format_to
1867
+ -----------------------------------
1868
+  (0.0ms) SAVEPOINT active_record_1
1869
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "+2376187"], ["created_at", "2015-03-31 04:03:26.958484"], ["updated_at", "2015-03-31 04:03:26.958484"]]
1870
+ Mode: test. To: 2376187, text: simple+text
1871
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "+2376187"], ["created_at", "2015-03-31 04:03:26.958484"], ["updated_at", "2015-03-31 04:03:26.958484"], ["id", 1], ["code", "1"], ["id", 1]]
1872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1873
+  (0.6ms) rollback transaction
1874
+  (0.0ms) begin transaction
1875
+ -------------------------------
1876
+ SmsterTest: test_confirguration
1877
+ -------------------------------
1878
+  (0.0ms) rollback transaction
1879
+  (0.0ms) begin transaction
1880
+ -----------------------------------------------
1881
+ Smster::ClickatellControllerTest: test_callback
1882
+ -----------------------------------------------
1883
+  (0.0ms) SAVEPOINT active_record_1
1884
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Clickatell"], ["status", 0], ["text", "simple text"], ["to", "9647232"], ["created_at", "2015-03-31 04:03:26.965768"], ["updated_at", "2015-03-31 04:03:26.965768"]]
1885
+ Mode: test. To: 9647232, text: simple+text
1886
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Clickatell"], ["status", 1], ["text", "simple text"], ["to", "9647232"], ["created_at", "2015-03-31 04:03:26.965768"], ["updated_at", "2015-03-31 04:03:26.965768"], ["id", 1], ["code", "1"], ["id", 1]]
1887
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1888
+ Processing by Smster::ClickatellController#callback as HTML
1889
+ Parameters: {"data"=>{"charge"=>"1.5", "messageStatus"=>"3", "description"=>"Received by recipient", "apiMessageId"=>"1"}}
1890
+ Sms::Clickatell Load (0.1ms) SELECT "smsters".* FROM "smsters" WHERE "smsters"."type" IN ('Sms::Clickatell') AND "smsters"."code" = ? LIMIT 1 [["code", "1"]]
1891
+  (0.0ms) SAVEPOINT active_record_1
1892
+ SQL (0.1ms) UPDATE "smsters" SET "status_message" = ?, "updated_at" = ? WHERE "smsters"."id" = ? [["status_message", "Received by recipient"], ["updated_at", "2015-03-31 04:03:26.970852"], ["id", 1]]
1893
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1894
+  (0.0ms) SAVEPOINT active_record_1
1895
+ SQL (0.0ms) UPDATE "smsters" SET "status" = ?, "updated_at" = ? WHERE "smsters"."id" = ? [["status", 2], ["updated_at", "2015-03-31 04:03:26.972013"], ["id", 1]]
1896
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1897
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.4ms)
1898
+  (0.9ms) rollback transaction
1899
+  (0.0ms) begin transaction
1900
+ ---------------------------
1901
+ Sms::NexmoTest: test_create
1902
+ ---------------------------
1903
+  (0.0ms) SAVEPOINT active_record_1
1904
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "4284971"], ["created_at", "2015-03-31 04:03:26.975731"], ["updated_at", "2015-03-31 04:03:26.975731"]]
1905
+ Mode: test. To: 4284971, text: simple+text
1906
+ SQL (0.3ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "4284971"], ["created_at", "2015-03-31 04:03:26.975731"], ["updated_at", "2015-03-31 04:03:26.975731"], ["id", 1], ["code", "1"], ["id", 1]]
1907
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1908
+  (0.5ms) rollback transaction
1909
+  (0.0ms) begin transaction
1910
+ ------------------------------
1911
+ Sms::NexmoTest: test_format_to
1912
+ ------------------------------
1913
+  (0.1ms) SAVEPOINT active_record_1
1914
+ SQL (0.2ms) INSERT INTO "smsters" ("type", "status", "text", "to", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Sms::Nexmo"], ["status", 0], ["text", "simple text"], ["to", "+2682634"], ["created_at", "2015-03-31 04:03:26.979410"], ["updated_at", "2015-03-31 04:03:26.979410"]]
1915
+ Mode: test. To: 2682634, text: simple+text
1916
+ SQL (0.2ms) UPDATE "smsters" SET "type" = ?, "status" = ?, "text" = ?, "to" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "code" = ? WHERE "smsters"."id" = ? [["type", "Sms::Nexmo"], ["status", 1], ["text", "simple text"], ["to", "+2682634"], ["created_at", "2015-03-31 04:03:26.979410"], ["updated_at", "2015-03-31 04:03:26.979410"], ["id", 1], ["code", "1"], ["id", 1]]
1917
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1918
+  (0.6ms) rollback transaction