siringa 0.0.5 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/README.md +15 -11
- data/app/controllers/siringa/siringa_controller.rb +17 -9
- data/config/routes.rb +2 -1
- data/lib/siringa/definitions.rb +3 -2
- data/lib/siringa/version.rb +1 -1
- data/lib/tasks/siringa_tasks.rake +1 -1
- data/test/controllers/siringa_controller_test.rb +23 -4
- data/test/dummy/test/siringa/definitions.rb +9 -0
- data/test/test_helper.rb +5 -0
- metadata +70 -78
- data/app/controllers/siringa/application_controller.rb +0 -4
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -6
- data/test/dummy/log/test.log +0 -751
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 98da03654dab98c0002993b8edf59c23ad55a47276c3ce554ba9030c1a08a92b
|
4
|
+
data.tar.gz: 86a3d23012075b42eb382effdf108d5660e5a5d08a48173cfbedc8d2e19ac7a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e954cc8176bf7aebf295da22b6d17cf1f04877570a7904530bb0d92a113cd93c0b0322d199e486499162da6118d61a1c5fbcbb30899ac99a7ba85a44997b9a1
|
7
|
+
data.tar.gz: 10f4c581bd5134e0490dc53a2b8fd03934af760b18f9e9a9816ea4ae60e7ce309a11d50283ad3a5fa2612b56a6ea1e8225c5a870eae84c907835408d3e87e5c4
|
data/README.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# Siringa :syringe:
|
2
|
-
This gem was born working on pure client acceptance testing in [
|
2
|
+
This gem was born working on pure client acceptance testing in [Redbooth](http://www.redbooth.com).
|
3
|
+
|
4
|
+
## WARNING :warning:
|
5
|
+
Due to a conflict with reserved word `load` we are deprecating `#load` action in `SiringaController` in favour of `#load_definition`. This change is reflected by a warning in logs but will be dropped in version `0.1.0`.
|
6
|
+
|
3
7
|
## The problem
|
4
8
|
|
5
9
|
You have a Rails based API and you need to write some acceptance tests using your Javascript/iOS/Android/whatever client.
|
@@ -72,24 +76,24 @@ Now that we've created our definitions we could use them in our two cases:
|
|
72
76
|
### As seed data
|
73
77
|
You could just load the `initial` definition running the following rake recipe after your deploy:
|
74
78
|
```console
|
75
|
-
rake siringa:
|
79
|
+
rake siringa:load_definition
|
76
80
|
```
|
77
81
|
`initial` is the default definition this Rake task recipe will try to load, if you want to load another definition instead you could pass its name as argument:
|
78
82
|
```console
|
79
|
-
rake 'siringa:
|
83
|
+
rake 'siringa:load_definition[another_definition]'
|
80
84
|
```
|
81
85
|
This will load a definition named `:another_definition`. Please note that if you use Zsh shell you'll need to use quotes, more info [here](http://robots.thoughtbot.com/post/18129303042/how-to-use-arguments-in-a-rake-task).
|
82
86
|
|
83
87
|
If you want to force a Rails environment you could just run the Sriringa recipe specifing the `RAILS_ENV` environmental variable:
|
84
88
|
```console
|
85
|
-
RAILS_ENV=development rake siringa:
|
89
|
+
RAILS_ENV=development rake siringa:load_definition
|
86
90
|
```
|
87
91
|
|
88
92
|
### During an acceptance test
|
89
93
|
As you can see running `rake routes`, Siringa added 3 new routes to your API:
|
90
94
|
```console
|
91
95
|
Routes for Siringa::Engine:
|
92
|
-
POST /
|
96
|
+
POST /load_definition/:definition(.:format) siringa/siringa#load_definition
|
93
97
|
dump POST /dump(.:format) siringa/siringa#dump
|
94
98
|
restore POST /restore(.:format) siringa/siringa#restore
|
95
99
|
```
|
@@ -100,7 +104,7 @@ The workflow I propose here is:
|
|
100
104
|
|
101
105
|
This will create a `.dump` file in the `tmp/dumps` directory created during the install process. You could create as many dump files as you want but Siringa will keep only the latest 5 dumps created.
|
102
106
|
|
103
|
-
2. Load a Siringa definition performing a `POST` request to `YOURHOST/siringa/
|
107
|
+
2. Load a Siringa definition performing a `POST` request to `YOURHOST/siringa/load_definition/specific`
|
104
108
|
|
105
109
|
This will run the code defined in a definition named `specific` on the server.
|
106
110
|
|
@@ -126,7 +130,7 @@ end
|
|
126
130
|
## Acceptance test example
|
127
131
|
Just to get the idea, the following script will show you how to use Siringa in a acceptance test using Selenium, [rest-client](https://github.com/rest-client/rest-client) and RSpec:
|
128
132
|
```ruby
|
129
|
-
require 'selenium-webdriver'
|
133
|
+
require 'selenium-webdriver'
|
130
134
|
require 'rspec'
|
131
135
|
require 'rest_client'
|
132
136
|
|
@@ -144,9 +148,9 @@ describe "Acceptance test using Siringa" do
|
|
144
148
|
@driver.quit
|
145
149
|
end
|
146
150
|
|
147
|
-
it "
|
148
|
-
#
|
149
|
-
RestClient.post 'YOURHOST/siringa/
|
151
|
+
it "Loads a definition and test something" do
|
152
|
+
# Loads a definition named 'specific'
|
153
|
+
RestClient.post 'YOURHOST/siringa/load_definition', { definition: :specific }
|
150
154
|
|
151
155
|
# Here goes your test
|
152
156
|
|
@@ -163,5 +167,5 @@ end
|
|
163
167
|
## How to collaborate
|
164
168
|
* Fork the repo and send a pull request, thanks!
|
165
169
|
|
166
|
-
#
|
170
|
+
# License
|
167
171
|
MIT-LICENSE 2013 Enrico Stano
|
@@ -1,15 +1,15 @@
|
|
1
1
|
module Siringa
|
2
|
-
class SiringaController <
|
2
|
+
class SiringaController < ActionController::Base
|
3
|
+
|
4
|
+
skip_before_action :verify_authenticity_token
|
3
5
|
|
4
|
-
def
|
5
|
-
Siringa.load_definition(params['definition'].to_sym)
|
6
|
-
|
6
|
+
def load_definition
|
7
|
+
result = Siringa.load_definition(params['definition'].to_sym, options)
|
8
|
+
render json: result, status: :created
|
7
9
|
rescue ArgumentError => exception
|
8
|
-
|
9
|
-
rescue => exception
|
10
|
-
|
11
|
-
ensure
|
12
|
-
render resp
|
10
|
+
render json: { error: exception.to_s }, status: :method_not_allowed
|
11
|
+
rescue StandardError => exception
|
12
|
+
render json: { error: exception.to_s }, status: :internal_server_error
|
13
13
|
end
|
14
14
|
|
15
15
|
def dump
|
@@ -45,5 +45,13 @@ module Siringa
|
|
45
45
|
render resp
|
46
46
|
end
|
47
47
|
|
48
|
+
private
|
49
|
+
|
50
|
+
# Returns the arguments to be passed to the definition
|
51
|
+
#
|
52
|
+
# @return [Hash] arguments of the definition
|
53
|
+
def options
|
54
|
+
params[:siringa_args]
|
55
|
+
end
|
48
56
|
end
|
49
57
|
end
|
data/config/routes.rb
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
Siringa::Engine.routes.draw do
|
2
|
-
post "load/:definition", :to => "siringa#load"
|
2
|
+
post "load/:definition", :to => "siringa#load" # To be deprecated in 0.1.0
|
3
|
+
post "load_definition/:definition", :to => "siringa#load_definition"
|
3
4
|
post "dump", :to => "siringa#dump"
|
4
5
|
post "restore", :to => "siringa#restore"
|
5
6
|
end
|
data/lib/siringa/definitions.rb
CHANGED
@@ -8,9 +8,10 @@ module Siringa
|
|
8
8
|
# Load a definition and run its code
|
9
9
|
#
|
10
10
|
# @param [Symbol] name of the definition
|
11
|
-
|
11
|
+
# @param [Hash] arguments of the definition
|
12
|
+
def self.load_definition(name, options)
|
12
13
|
if exists_definition?(name)
|
13
|
-
@definitions[name].call
|
14
|
+
@definitions[name].call(options)
|
14
15
|
else
|
15
16
|
raise ArgumentError, "Definition #{name.to_s} does not exist.", caller
|
16
17
|
end
|
data/lib/siringa/version.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
namespace :siringa do
|
2
2
|
desc "Load a definition and populate the DB with seed data"
|
3
|
-
task :
|
3
|
+
task :load_definition, [:definition] do |t, args|
|
4
4
|
args.with_defaults :definition => :initial
|
5
5
|
Rake::Task["environment"].invoke
|
6
6
|
puts <<-EOS
|
@@ -10,14 +10,33 @@ class SiringaControllerTest < ActionController::TestCase
|
|
10
10
|
def teardown
|
11
11
|
end
|
12
12
|
|
13
|
-
test "
|
14
|
-
get :
|
13
|
+
test "load_definition action passing existing factory" do
|
14
|
+
get :load_definition, { definition: "initial", use_route: "siringa" }
|
15
15
|
assert_response :success
|
16
16
|
end
|
17
17
|
|
18
|
-
test "
|
19
|
-
get :
|
18
|
+
test "load_definition action passing a factory that doesn't exist" do
|
19
|
+
get :load_definition, { definition: "papapa", use_route: "siringa" }
|
20
20
|
assert_response :method_not_allowed
|
21
21
|
end
|
22
22
|
|
23
|
+
test "load_definition action passing arguments" do
|
24
|
+
get :load_definition, {
|
25
|
+
definition: "definition_with_arguments",
|
26
|
+
siringa_args: { name: 'Robb Stark' },
|
27
|
+
use_route: "siringa"
|
28
|
+
}
|
29
|
+
assert_response :success
|
30
|
+
end
|
31
|
+
|
32
|
+
test "load_definition action returning JSON response" do
|
33
|
+
get :load_definition, {
|
34
|
+
definition: "definition_with_return",
|
35
|
+
siringa_args: { name: 'Ned' },
|
36
|
+
use_route: "siringa"
|
37
|
+
}
|
38
|
+
assert body['id']
|
39
|
+
assert_equal 'Ned', body['name']
|
40
|
+
assert_equal 'Stark', body['surname']
|
41
|
+
end
|
23
42
|
end
|
@@ -4,3 +4,12 @@ require File.expand_path('../../factories', __FILE__)
|
|
4
4
|
Siringa.add_definition :initial do
|
5
5
|
FactoryGirl.create :user, name: 'Jesse Pinkman'
|
6
6
|
end
|
7
|
+
|
8
|
+
Siringa.add_definition :definition_with_arguments do |args|
|
9
|
+
FactoryGirl.create :user, name: args[:name]
|
10
|
+
end
|
11
|
+
|
12
|
+
Siringa.add_definition :definition_with_return do |args|
|
13
|
+
user = FactoryGirl.create :user, name: args[:name]
|
14
|
+
{ id: user.id, name: user.name, surname: 'Stark' }
|
15
|
+
end
|
data/test/test_helper.rb
CHANGED
metadata
CHANGED
@@ -1,153 +1,145 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: siringa
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Enrico Stano
|
8
|
-
|
8
|
+
- Pau Pérez
|
9
|
+
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date:
|
12
|
+
date: 2020-11-16 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: sqlite3
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
16
17
|
requirements:
|
17
|
-
- -
|
18
|
+
- - ">="
|
18
19
|
- !ruby/object:Gem::Version
|
19
20
|
version: '0'
|
20
21
|
type: :development
|
21
22
|
prerelease: false
|
22
23
|
version_requirements: !ruby/object:Gem::Requirement
|
23
24
|
requirements:
|
24
|
-
- -
|
25
|
+
- - ">="
|
25
26
|
- !ruby/object:Gem::Version
|
26
27
|
version: '0'
|
27
28
|
description: Remotely populate DB for Rails applications for pure client acceptance
|
28
29
|
testing
|
29
30
|
email:
|
30
31
|
- enricostn@gmail.com
|
32
|
+
- saulopefa@gmail.com
|
31
33
|
executables: []
|
32
34
|
extensions: []
|
33
35
|
extra_rdoc_files: []
|
34
36
|
files:
|
37
|
+
- MIT-LICENSE
|
38
|
+
- README.md
|
39
|
+
- Rakefile
|
35
40
|
- app/controllers/siringa/siringa_controller.rb
|
36
|
-
- app/controllers/siringa/application_controller.rb
|
37
41
|
- config/routes.rb
|
42
|
+
- lib/generators/siringa/install_generator.rb
|
43
|
+
- lib/siringa.rb
|
38
44
|
- lib/siringa/configuration.rb
|
39
|
-
- lib/siringa/version.rb
|
40
45
|
- lib/siringa/definitions.rb
|
41
46
|
- lib/siringa/dumps.rb
|
42
47
|
- lib/siringa/engine.rb
|
48
|
+
- lib/siringa/version.rb
|
43
49
|
- lib/tasks/siringa_tasks.rake
|
44
|
-
- lib/siringa.rb
|
45
|
-
- lib/generators/siringa/install_generator.rb
|
46
|
-
- MIT-LICENSE
|
47
|
-
- Rakefile
|
48
|
-
- README.md
|
49
|
-
- test/test_helper.rb
|
50
50
|
- test/controllers/siringa_controller_test.rb
|
51
|
-
- test/
|
52
|
-
- test/
|
53
|
-
- test/dummy/
|
51
|
+
- test/dummy/Rakefile
|
52
|
+
- test/dummy/app/assets/javascripts/application.js
|
53
|
+
- test/dummy/app/assets/stylesheets/application.css
|
54
|
+
- test/dummy/app/controllers/application_controller.rb
|
55
|
+
- test/dummy/app/helpers/application_helper.rb
|
56
|
+
- test/dummy/app/models/user.rb
|
57
|
+
- test/dummy/app/views/layouts/application.html.erb
|
58
|
+
- test/dummy/config.ru
|
54
59
|
- test/dummy/config/application.rb
|
60
|
+
- test/dummy/config/boot.rb
|
61
|
+
- test/dummy/config/database.yml
|
62
|
+
- test/dummy/config/environment.rb
|
63
|
+
- test/dummy/config/environments/development.rb
|
55
64
|
- test/dummy/config/environments/production.rb
|
56
65
|
- test/dummy/config/environments/test.rb
|
57
|
-
- test/dummy/config/environments/development.rb
|
58
|
-
- test/dummy/config/locales/en.yml
|
59
66
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
60
|
-
- test/dummy/config/initializers/mime_types.rb
|
61
67
|
- test/dummy/config/initializers/inflections.rb
|
62
|
-
- test/dummy/config/initializers/
|
68
|
+
- test/dummy/config/initializers/mime_types.rb
|
63
69
|
- test/dummy/config/initializers/secret_token.rb
|
70
|
+
- test/dummy/config/initializers/session_store.rb
|
64
71
|
- test/dummy/config/initializers/wrap_parameters.rb
|
72
|
+
- test/dummy/config/locales/en.yml
|
65
73
|
- test/dummy/config/routes.rb
|
66
|
-
- test/dummy/config/boot.rb
|
67
|
-
- test/dummy/config/environment.rb
|
68
|
-
- test/dummy/test/siringa/definitions.rb
|
69
|
-
- test/dummy/test/factories.rb
|
70
|
-
- test/dummy/config.ru
|
71
74
|
- test/dummy/db/migrate/20130927161308_create_user.rb
|
72
|
-
- test/dummy/db/test.sqlite3
|
73
75
|
- test/dummy/db/schema.rb
|
74
|
-
- test/dummy/db/development.sqlite3
|
75
|
-
- test/dummy/script/rails
|
76
|
-
- test/dummy/app/helpers/application_helper.rb
|
77
|
-
- test/dummy/app/controllers/application_controller.rb
|
78
|
-
- test/dummy/app/assets/javascripts/application.js
|
79
|
-
- test/dummy/app/assets/stylesheets/application.css
|
80
|
-
- test/dummy/app/views/layouts/application.html.erb
|
81
|
-
- test/dummy/app/models/user.rb
|
82
|
-
- test/dummy/public/500.html
|
83
76
|
- test/dummy/public/404.html
|
84
77
|
- test/dummy/public/422.html
|
78
|
+
- test/dummy/public/500.html
|
85
79
|
- test/dummy/public/favicon.ico
|
86
|
-
- test/dummy/
|
87
|
-
- test/dummy/
|
88
|
-
- test/dummy/
|
80
|
+
- test/dummy/script/rails
|
81
|
+
- test/dummy/test/factories.rb
|
82
|
+
- test/dummy/test/siringa/definitions.rb
|
83
|
+
- test/integration/navigation_test.rb
|
84
|
+
- test/siringa_test.rb
|
85
|
+
- test/test_helper.rb
|
89
86
|
homepage: https://github.com/enricostano/siringa
|
90
87
|
licenses:
|
91
88
|
- MIT
|
92
89
|
metadata: {}
|
93
|
-
post_install_message:
|
90
|
+
post_install_message:
|
94
91
|
rdoc_options: []
|
95
92
|
require_paths:
|
96
93
|
- lib
|
97
94
|
required_ruby_version: !ruby/object:Gem::Requirement
|
98
95
|
requirements:
|
99
|
-
- -
|
96
|
+
- - ">="
|
100
97
|
- !ruby/object:Gem::Version
|
101
98
|
version: '0'
|
102
99
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
103
100
|
requirements:
|
104
|
-
- -
|
101
|
+
- - ">="
|
105
102
|
- !ruby/object:Gem::Version
|
106
103
|
version: '0'
|
107
104
|
requirements: []
|
108
|
-
|
109
|
-
|
110
|
-
signing_key:
|
105
|
+
rubygems_version: 3.1.2
|
106
|
+
signing_key:
|
111
107
|
specification_version: 4
|
112
108
|
summary: Remotely populate DB for Rails applications for pure client acceptance testing
|
113
109
|
test_files:
|
114
|
-
- test/test_helper.rb
|
115
|
-
- test/controllers/siringa_controller_test.rb
|
116
|
-
- test/integration/navigation_test.rb
|
117
|
-
- test/siringa_test.rb
|
118
|
-
- test/dummy/config/database.yml
|
119
|
-
- test/dummy/config/application.rb
|
120
|
-
- test/dummy/config/environments/production.rb
|
121
|
-
- test/dummy/config/environments/test.rb
|
122
|
-
- test/dummy/config/environments/development.rb
|
123
|
-
- test/dummy/config/locales/en.yml
|
124
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
125
|
-
- test/dummy/config/initializers/mime_types.rb
|
126
|
-
- test/dummy/config/initializers/inflections.rb
|
127
|
-
- test/dummy/config/initializers/session_store.rb
|
128
|
-
- test/dummy/config/initializers/secret_token.rb
|
129
|
-
- test/dummy/config/initializers/wrap_parameters.rb
|
130
|
-
- test/dummy/config/routes.rb
|
131
|
-
- test/dummy/config/boot.rb
|
132
|
-
- test/dummy/config/environment.rb
|
133
|
-
- test/dummy/test/siringa/definitions.rb
|
134
|
-
- test/dummy/test/factories.rb
|
135
|
-
- test/dummy/config.ru
|
136
|
-
- test/dummy/db/migrate/20130927161308_create_user.rb
|
137
|
-
- test/dummy/db/test.sqlite3
|
138
|
-
- test/dummy/db/schema.rb
|
139
|
-
- test/dummy/db/development.sqlite3
|
140
110
|
- test/dummy/script/rails
|
111
|
+
- test/dummy/db/schema.rb
|
112
|
+
- test/dummy/db/migrate/20130927161308_create_user.rb
|
113
|
+
- test/dummy/config.ru
|
114
|
+
- test/dummy/public/422.html
|
115
|
+
- test/dummy/public/500.html
|
116
|
+
- test/dummy/public/favicon.ico
|
117
|
+
- test/dummy/public/404.html
|
141
118
|
- test/dummy/app/helpers/application_helper.rb
|
119
|
+
- test/dummy/app/views/layouts/application.html.erb
|
142
120
|
- test/dummy/app/controllers/application_controller.rb
|
121
|
+
- test/dummy/app/models/user.rb
|
143
122
|
- test/dummy/app/assets/javascripts/application.js
|
144
123
|
- test/dummy/app/assets/stylesheets/application.css
|
145
|
-
- test/dummy/
|
146
|
-
- test/dummy/
|
147
|
-
- test/dummy/public/500.html
|
148
|
-
- test/dummy/public/404.html
|
149
|
-
- test/dummy/public/422.html
|
150
|
-
- test/dummy/public/favicon.ico
|
124
|
+
- test/dummy/test/factories.rb
|
125
|
+
- test/dummy/test/siringa/definitions.rb
|
151
126
|
- test/dummy/Rakefile
|
152
|
-
- test/dummy/
|
153
|
-
- test/dummy/
|
127
|
+
- test/dummy/config/environments/test.rb
|
128
|
+
- test/dummy/config/environments/development.rb
|
129
|
+
- test/dummy/config/environments/production.rb
|
130
|
+
- test/dummy/config/locales/en.yml
|
131
|
+
- test/dummy/config/boot.rb
|
132
|
+
- test/dummy/config/routes.rb
|
133
|
+
- test/dummy/config/environment.rb
|
134
|
+
- test/dummy/config/database.yml
|
135
|
+
- test/dummy/config/application.rb
|
136
|
+
- test/dummy/config/initializers/secret_token.rb
|
137
|
+
- test/dummy/config/initializers/mime_types.rb
|
138
|
+
- test/dummy/config/initializers/inflections.rb
|
139
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
140
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
141
|
+
- test/dummy/config/initializers/session_store.rb
|
142
|
+
- test/test_helper.rb
|
143
|
+
- test/integration/navigation_test.rb
|
144
|
+
- test/siringa_test.rb
|
145
|
+
- test/controllers/siringa_controller_test.rb
|
Binary file
|
data/test/dummy/db/test.sqlite3
DELETED
Binary file
|
@@ -1,6 +0,0 @@
|
|
1
|
-
[1m[36m (9.3ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) [0m
|
2
|
-
[1m[35m (8.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3
|
-
[1m[36m (11.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4
|
-
[1m[35m (0.4ms)[0m SELECT version FROM "schema_migrations"
|
5
|
-
[1m[36m (9.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130927161308')[0m
|
6
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
data/test/dummy/log/test.log
DELETED
@@ -1,751 +0,0 @@
|
|
1
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2
|
-
----------------------------------------------------------------------------
|
3
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
4
|
-
----------------------------------------------------------------------------
|
5
|
-
Processing by Siringa::SiringaController#load as HTML
|
6
|
-
Parameters: {"definition"=>"papapa"}
|
7
|
-
Rendered text template (0.0ms)
|
8
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
9
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
10
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11
|
-
----------------------------------------------------------------
|
12
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
13
|
-
----------------------------------------------------------------
|
14
|
-
Processing by Siringa::SiringaController#load as HTML
|
15
|
-
Parameters: {"definition"=>"initial"}
|
16
|
-
Completed 500 Internal Server Error in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms)
|
17
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
18
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
19
|
-
----------------------------------------------------------------------------
|
20
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
21
|
-
----------------------------------------------------------------------------
|
22
|
-
Processing by Siringa::SiringaController#load as HTML
|
23
|
-
Parameters: {"definition"=>"papapa"}
|
24
|
-
Rendered text template (0.0ms)
|
25
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
26
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
27
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
28
|
-
----------------------------------------------------------------
|
29
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
30
|
-
----------------------------------------------------------------
|
31
|
-
Processing by Siringa::SiringaController#load as HTML
|
32
|
-
Parameters: {"definition"=>"initial"}
|
33
|
-
Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.1ms)
|
34
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
35
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
36
|
-
----------------------------------------------------------------------------
|
37
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
38
|
-
----------------------------------------------------------------------------
|
39
|
-
Processing by Siringa::SiringaController#load as HTML
|
40
|
-
Parameters: {"definition"=>"papapa"}
|
41
|
-
Rendered text template (0.0ms)
|
42
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
43
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
44
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
45
|
-
----------------------------------------------------------------
|
46
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
47
|
-
----------------------------------------------------------------
|
48
|
-
Processing by Siringa::SiringaController#load as HTML
|
49
|
-
Parameters: {"definition"=>"initial"}
|
50
|
-
Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.1ms)
|
51
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
52
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
53
|
-
----------------------------------------------------------------------------
|
54
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
55
|
-
----------------------------------------------------------------------------
|
56
|
-
Processing by Siringa::SiringaController#load as HTML
|
57
|
-
Parameters: {"definition"=>"papapa"}
|
58
|
-
Rendered text template (0.0ms)
|
59
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
60
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
61
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
62
|
-
----------------------------------------------------------------
|
63
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
64
|
-
----------------------------------------------------------------
|
65
|
-
Processing by Siringa::SiringaController#load as HTML
|
66
|
-
Parameters: {"definition"=>"initial"}
|
67
|
-
Completed 500 Internal Server Error in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms)
|
68
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
69
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
70
|
-
----------------------------------------------------------------------------
|
71
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
72
|
-
----------------------------------------------------------------------------
|
73
|
-
Processing by Siringa::SiringaController#load as HTML
|
74
|
-
Parameters: {"definition"=>"papapa"}
|
75
|
-
Rendered text template (0.0ms)
|
76
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
77
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
78
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
79
|
-
----------------------------------------------------------------
|
80
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
81
|
-
----------------------------------------------------------------
|
82
|
-
Processing by Siringa::SiringaController#load as HTML
|
83
|
-
Parameters: {"definition"=>"initial"}
|
84
|
-
Completed 500 Internal Server Error in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms)
|
85
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
86
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
87
|
-
----------------------------------------------------------------------------
|
88
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
89
|
-
----------------------------------------------------------------------------
|
90
|
-
Processing by Siringa::SiringaController#load as HTML
|
91
|
-
Parameters: {"definition"=>"papapa"}
|
92
|
-
Rendered text template (0.0ms)
|
93
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
94
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
95
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
96
|
-
----------------------------------------------------------------
|
97
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
98
|
-
----------------------------------------------------------------
|
99
|
-
Processing by Siringa::SiringaController#load as HTML
|
100
|
-
Parameters: {"definition"=>"initial"}
|
101
|
-
Completed 500 Internal Server Error in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms)
|
102
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
103
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
104
|
-
----------------------------------------------------------------------------
|
105
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
106
|
-
----------------------------------------------------------------------------
|
107
|
-
Processing by Siringa::SiringaController#load as HTML
|
108
|
-
Parameters: {"definition"=>"papapa"}
|
109
|
-
Rendered text template (0.0ms)
|
110
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
111
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
112
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
113
|
-
----------------------------------------------------------------
|
114
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
115
|
-
----------------------------------------------------------------
|
116
|
-
Processing by Siringa::SiringaController#load as HTML
|
117
|
-
Parameters: {"definition"=>"initial"}
|
118
|
-
Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.1ms)
|
119
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
120
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
121
|
-
----------------------------------------------------------------------------
|
122
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
123
|
-
----------------------------------------------------------------------------
|
124
|
-
Processing by Siringa::SiringaController#load as HTML
|
125
|
-
Parameters: {"definition"=>"papapa"}
|
126
|
-
Rendered text template (0.0ms)
|
127
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
128
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
129
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
130
|
-
----------------------------------------------------------------
|
131
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
132
|
-
----------------------------------------------------------------
|
133
|
-
Processing by Siringa::SiringaController#load as HTML
|
134
|
-
Parameters: {"definition"=>"initial"}
|
135
|
-
Completed 500 Internal Server Error in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms)
|
136
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
137
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
138
|
-
----------------------------------------------------------------------------
|
139
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
140
|
-
----------------------------------------------------------------------------
|
141
|
-
Processing by Siringa::SiringaController#load as HTML
|
142
|
-
Parameters: {"definition"=>"papapa"}
|
143
|
-
Rendered text template (0.0ms)
|
144
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
145
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
146
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
147
|
-
----------------------------------------------------------------
|
148
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
149
|
-
----------------------------------------------------------------
|
150
|
-
Processing by Siringa::SiringaController#load as HTML
|
151
|
-
Parameters: {"definition"=>"initial"}
|
152
|
-
Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.1ms)
|
153
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
154
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
155
|
-
----------------------------------------------------------------------------
|
156
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
157
|
-
----------------------------------------------------------------------------
|
158
|
-
Processing by Siringa::SiringaController#load as HTML
|
159
|
-
Parameters: {"definition"=>"papapa"}
|
160
|
-
Rendered text template (0.0ms)
|
161
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
162
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
163
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
164
|
-
----------------------------------------------------------------
|
165
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
166
|
-
----------------------------------------------------------------
|
167
|
-
Processing by Siringa::SiringaController#load as HTML
|
168
|
-
Parameters: {"definition"=>"initial"}
|
169
|
-
Completed 500 Internal Server Error in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms)
|
170
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
171
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
172
|
-
----------------------------------------------------------------------------
|
173
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
174
|
-
----------------------------------------------------------------------------
|
175
|
-
Processing by Siringa::SiringaController#load as HTML
|
176
|
-
Parameters: {"definition"=>"papapa"}
|
177
|
-
Rendered text template (0.0ms)
|
178
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
179
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
180
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
181
|
-
----------------------------------------------------------------
|
182
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
183
|
-
----------------------------------------------------------------
|
184
|
-
Processing by Siringa::SiringaController#load as HTML
|
185
|
-
Parameters: {"definition"=>"initial"}
|
186
|
-
Completed 500 Internal Server Error in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms)
|
187
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
188
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
189
|
-
----------------------------------------------------------------------------
|
190
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
191
|
-
----------------------------------------------------------------------------
|
192
|
-
Processing by Siringa::SiringaController#load as HTML
|
193
|
-
Parameters: {"definition"=>"papapa"}
|
194
|
-
Rendered text template (0.0ms)
|
195
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
196
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
197
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
198
|
-
----------------------------------------------------------------
|
199
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
200
|
-
----------------------------------------------------------------
|
201
|
-
Processing by Siringa::SiringaController#load as HTML
|
202
|
-
Parameters: {"definition"=>"initial"}
|
203
|
-
Completed 500 Internal Server Error in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms)
|
204
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
205
|
-
[1m[36m (17.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
206
|
-
[1m[35m (17.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
207
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
208
|
-
Migrating to CreateUser (20130927161308)
|
209
|
-
[1m[35m (0.1ms)[0m begin transaction
|
210
|
-
[1m[36m (0.3ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) [0m
|
211
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130927161308"]]
|
212
|
-
[1m[36m (17.5ms)[0m [1mcommit transaction[0m
|
213
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
214
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
215
|
-
----------------------------------------------------------------------------
|
216
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
217
|
-
----------------------------------------------------------------------------
|
218
|
-
Processing by Siringa::SiringaController#load as HTML
|
219
|
-
Parameters: {"definition"=>"papapa"}
|
220
|
-
Rendered text template (0.0ms)
|
221
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
222
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
223
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
224
|
-
----------------------------------------------------------------
|
225
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
226
|
-
----------------------------------------------------------------
|
227
|
-
Processing by Siringa::SiringaController#load as HTML
|
228
|
-
Parameters: {"definition"=>"initial"}
|
229
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
230
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
231
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
232
|
-
Completed 201 Created in 8ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
233
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
234
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
235
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
236
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
237
|
-
----------------------------------------------------------------------------
|
238
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
239
|
-
----------------------------------------------------------------------------
|
240
|
-
Processing by Siringa::SiringaController#load as HTML
|
241
|
-
Parameters: {"definition"=>"papapa"}
|
242
|
-
Rendered text template (0.0ms)
|
243
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
244
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
245
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
246
|
-
----------------------------------------------------------------
|
247
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
248
|
-
----------------------------------------------------------------
|
249
|
-
Processing by Siringa::SiringaController#load as HTML
|
250
|
-
Parameters: {"definition"=>"initial"}
|
251
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
252
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
253
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
254
|
-
Completed 201 Created in 8ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
255
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
256
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
257
|
-
----------------------------------------------------------------------------
|
258
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
259
|
-
----------------------------------------------------------------------------
|
260
|
-
Processing by Siringa::SiringaController#load as HTML
|
261
|
-
Parameters: {"definition"=>"papapa"}
|
262
|
-
Rendered text template (0.0ms)
|
263
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
264
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
265
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
266
|
-
----------------------------------------------------------------
|
267
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
268
|
-
----------------------------------------------------------------
|
269
|
-
Processing by Siringa::SiringaController#load as HTML
|
270
|
-
Parameters: {"definition"=>"initial"}
|
271
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
272
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
273
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
274
|
-
Completed 201 Created in 8ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
275
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
276
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
277
|
-
----------------------------------------------------------------------------
|
278
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
279
|
-
----------------------------------------------------------------------------
|
280
|
-
Processing by Siringa::SiringaController#load as HTML
|
281
|
-
Parameters: {"definition"=>"papapa"}
|
282
|
-
Rendered text template (0.0ms)
|
283
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
284
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
285
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
286
|
-
----------------------------------------------------------------
|
287
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
288
|
-
----------------------------------------------------------------
|
289
|
-
Processing by Siringa::SiringaController#load as HTML
|
290
|
-
Parameters: {"definition"=>"initial"}
|
291
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
292
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
293
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
294
|
-
----------------------------------------------------------------------------
|
295
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
296
|
-
----------------------------------------------------------------------------
|
297
|
-
Processing by Siringa::SiringaController#load as HTML
|
298
|
-
Parameters: {"definition"=>"papapa"}
|
299
|
-
Rendered text template (0.0ms)
|
300
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
301
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
302
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
303
|
-
----------------------------------------------------------------
|
304
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
305
|
-
----------------------------------------------------------------
|
306
|
-
Processing by Siringa::SiringaController#load as HTML
|
307
|
-
Parameters: {"definition"=>"initial"}
|
308
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
309
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
310
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
311
|
-
Completed 201 Created in 8ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
312
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
313
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
314
|
-
----------------------------------------------------------------------------
|
315
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
316
|
-
----------------------------------------------------------------------------
|
317
|
-
Processing by Siringa::SiringaController#load as HTML
|
318
|
-
Parameters: {"definition"=>"papapa"}
|
319
|
-
Rendered text template (0.0ms)
|
320
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
321
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
322
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
323
|
-
----------------------------------------------------------------
|
324
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
325
|
-
----------------------------------------------------------------
|
326
|
-
Processing by Siringa::SiringaController#load as HTML
|
327
|
-
Parameters: {"definition"=>"initial"}
|
328
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
329
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
330
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
331
|
-
Completed 201 Created in 8ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
332
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
333
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
334
|
-
----------------------------------------------------------------------------
|
335
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
336
|
-
----------------------------------------------------------------------------
|
337
|
-
Processing by Siringa::SiringaController#load as HTML
|
338
|
-
Parameters: {"definition"=>"papapa"}
|
339
|
-
Rendered text template (0.0ms)
|
340
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
341
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
342
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
343
|
-
----------------------------------------------------------------
|
344
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
345
|
-
----------------------------------------------------------------
|
346
|
-
Processing by Siringa::SiringaController#load as HTML
|
347
|
-
Parameters: {"definition"=>"initial"}
|
348
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
350
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
351
|
-
Completed 201 Created in 8ms (Views: 0.3ms | ActiveRecord: 0.6ms)
|
352
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
353
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
354
|
-
----------------------------------------------------------------------------
|
355
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
356
|
-
----------------------------------------------------------------------------
|
357
|
-
Processing by Siringa::SiringaController#load as HTML
|
358
|
-
Parameters: {"definition"=>"papapa"}
|
359
|
-
Rendered text template (0.0ms)
|
360
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
361
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
362
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
363
|
-
----------------------------------------------------------------
|
364
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
365
|
-
----------------------------------------------------------------
|
366
|
-
Processing by Siringa::SiringaController#load as HTML
|
367
|
-
Parameters: {"definition"=>"initial"}
|
368
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
369
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
370
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
371
|
-
Completed 201 Created in 9ms (Views: 0.4ms | ActiveRecord: 0.8ms)
|
372
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
373
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
374
|
-
----------------------------------------------------------------------------
|
375
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
376
|
-
----------------------------------------------------------------------------
|
377
|
-
Processing by Siringa::SiringaController#load as HTML
|
378
|
-
Parameters: {"definition"=>"papapa"}
|
379
|
-
Rendered text template (0.0ms)
|
380
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
381
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
382
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
383
|
-
----------------------------------------------------------------
|
384
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
385
|
-
----------------------------------------------------------------
|
386
|
-
Processing by Siringa::SiringaController#load as HTML
|
387
|
-
Parameters: {"definition"=>"initial"}
|
388
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
389
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
390
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
391
|
-
Completed 201 Created in 8ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
392
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
393
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
394
|
-
----------------------------------------------------------------------------
|
395
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
396
|
-
----------------------------------------------------------------------------
|
397
|
-
Processing by Siringa::SiringaController#load as HTML
|
398
|
-
Parameters: {"definition"=>"papapa"}
|
399
|
-
Rendered text template (0.0ms)
|
400
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
401
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
402
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
403
|
-
----------------------------------------------------------------
|
404
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
405
|
-
----------------------------------------------------------------
|
406
|
-
Processing by Siringa::SiringaController#load as HTML
|
407
|
-
Parameters: {"definition"=>"initial"}
|
408
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
409
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
410
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
411
|
-
Completed 201 Created in 8ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
412
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
413
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
414
|
-
----------------------------------------------------------------------------
|
415
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
416
|
-
----------------------------------------------------------------------------
|
417
|
-
Processing by Siringa::SiringaController#load as HTML
|
418
|
-
Parameters: {"definition"=>"papapa"}
|
419
|
-
Rendered text template (0.0ms)
|
420
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
421
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
422
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
423
|
-
----------------------------------------------------------------
|
424
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
425
|
-
----------------------------------------------------------------
|
426
|
-
Processing by Siringa::SiringaController#load as HTML
|
427
|
-
Parameters: {"definition"=>"initial"}
|
428
|
-
Completed 405 Method Not Allowed in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
429
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
430
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
431
|
-
----------------------------------------------------------------------------
|
432
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
433
|
-
----------------------------------------------------------------------------
|
434
|
-
Processing by Siringa::SiringaController#load as HTML
|
435
|
-
Parameters: {"definition"=>"papapa"}
|
436
|
-
Rendered text template (0.0ms)
|
437
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
438
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
439
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
440
|
-
----------------------------------------------------------------
|
441
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
442
|
-
----------------------------------------------------------------
|
443
|
-
Processing by Siringa::SiringaController#load as HTML
|
444
|
-
Parameters: {"definition"=>"initial"}
|
445
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
446
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
447
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
448
|
-
Completed 201 Created in 7ms (Views: 0.3ms | ActiveRecord: 0.5ms)
|
449
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
450
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
451
|
-
----------------------------------------------------------------------------
|
452
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
453
|
-
----------------------------------------------------------------------------
|
454
|
-
Processing by Siringa::SiringaController#load as HTML
|
455
|
-
Parameters: {"definition"=>"papapa"}
|
456
|
-
Rendered text template (0.0ms)
|
457
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
458
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
459
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
460
|
-
----------------------------------------------------------------
|
461
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
462
|
-
----------------------------------------------------------------
|
463
|
-
Processing by Siringa::SiringaController#load as HTML
|
464
|
-
Parameters: {"definition"=>"initial"}
|
465
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
466
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
467
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
468
|
-
Completed 201 Created in 8ms (Views: 0.3ms | ActiveRecord: 0.6ms)
|
469
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
470
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
471
|
-
----------------------------------------------------------------------------
|
472
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
473
|
-
----------------------------------------------------------------------------
|
474
|
-
Processing by Siringa::SiringaController#load as HTML
|
475
|
-
Parameters: {"definition"=>"papapa"}
|
476
|
-
Rendered text template (0.0ms)
|
477
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
478
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
479
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
480
|
-
----------------------------------------------------------------
|
481
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
482
|
-
----------------------------------------------------------------
|
483
|
-
Processing by Siringa::SiringaController#load as HTML
|
484
|
-
Parameters: {"definition"=>"initial"}
|
485
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
486
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
487
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
488
|
-
Completed 201 Created in 8ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
489
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
490
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
491
|
-
----------------------------------------------------------------------------
|
492
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
493
|
-
----------------------------------------------------------------------------
|
494
|
-
Processing by Siringa::SiringaController#load as HTML
|
495
|
-
Parameters: {"definition"=>"papapa"}
|
496
|
-
Rendered text template (0.0ms)
|
497
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
498
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
499
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
500
|
-
----------------------------------------------------------------
|
501
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
502
|
-
----------------------------------------------------------------
|
503
|
-
Processing by Siringa::SiringaController#load as HTML
|
504
|
-
Parameters: {"definition"=>"initial"}
|
505
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
506
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
507
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
508
|
-
Completed 201 Created in 8ms (Views: 0.3ms | ActiveRecord: 0.8ms)
|
509
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
510
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
511
|
-
----------------------------------------------------------------------------
|
512
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
513
|
-
----------------------------------------------------------------------------
|
514
|
-
Processing by Siringa::SiringaController#load as HTML
|
515
|
-
Parameters: {"definition"=>"papapa"}
|
516
|
-
Rendered text template (0.0ms)
|
517
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
518
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
519
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
520
|
-
----------------------------------------------------------------
|
521
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
522
|
-
----------------------------------------------------------------
|
523
|
-
Processing by Siringa::SiringaController#load as HTML
|
524
|
-
Parameters: {"definition"=>"initial"}
|
525
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
526
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
527
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
528
|
-
Completed 201 Created in 7ms (Views: 0.3ms | ActiveRecord: 0.6ms)
|
529
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
530
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
531
|
-
----------------------------------------------------------------------------
|
532
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
533
|
-
----------------------------------------------------------------------------
|
534
|
-
Processing by Siringa::SiringaController#load as HTML
|
535
|
-
Parameters: {"definition"=>"papapa"}
|
536
|
-
Rendered text template (0.0ms)
|
537
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
538
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
539
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
540
|
-
----------------------------------------------------------------
|
541
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
542
|
-
----------------------------------------------------------------
|
543
|
-
Processing by Siringa::SiringaController#load as HTML
|
544
|
-
Parameters: {"definition"=>"initial"}
|
545
|
-
Completed 405 Method Not Allowed in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
546
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
547
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
548
|
-
----------------------------------------------------------------------------
|
549
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
550
|
-
----------------------------------------------------------------------------
|
551
|
-
Processing by Siringa::SiringaController#load as HTML
|
552
|
-
Parameters: {"definition"=>"papapa"}
|
553
|
-
Rendered text template (0.0ms)
|
554
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
555
|
-
[1m[35m (0.3ms)[0m rollback transaction
|
556
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
557
|
-
----------------------------------------------------------------
|
558
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
559
|
-
----------------------------------------------------------------
|
560
|
-
Processing by Siringa::SiringaController#load as HTML
|
561
|
-
Parameters: {"definition"=>"initial"}
|
562
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
563
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
564
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
565
|
-
----------------------------------------------------------------------------
|
566
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
567
|
-
----------------------------------------------------------------------------
|
568
|
-
Processing by Siringa::SiringaController#load as HTML
|
569
|
-
Parameters: {"definition"=>"papapa"}
|
570
|
-
Rendered text template (0.0ms)
|
571
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
572
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
573
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
574
|
-
----------------------------------------------------------------
|
575
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
576
|
-
----------------------------------------------------------------
|
577
|
-
Processing by Siringa::SiringaController#load as HTML
|
578
|
-
Parameters: {"definition"=>"initial"}
|
579
|
-
Completed 405 Method Not Allowed in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
580
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
581
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
582
|
-
----------------------------------------------------------------------------
|
583
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
584
|
-
----------------------------------------------------------------------------
|
585
|
-
Processing by Siringa::SiringaController#load as HTML
|
586
|
-
Parameters: {"definition"=>"papapa"}
|
587
|
-
Rendered text template (0.0ms)
|
588
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
589
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
590
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
591
|
-
----------------------------------------------------------------
|
592
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
593
|
-
----------------------------------------------------------------
|
594
|
-
Processing by Siringa::SiringaController#load as HTML
|
595
|
-
Parameters: {"definition"=>"initial"}
|
596
|
-
Completed 405 Method Not Allowed in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
597
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
598
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
599
|
-
----------------------------------------------------------------------------
|
600
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
601
|
-
----------------------------------------------------------------------------
|
602
|
-
Processing by Siringa::SiringaController#load as HTML
|
603
|
-
Parameters: {"definition"=>"papapa"}
|
604
|
-
Rendered text template (0.0ms)
|
605
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
606
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
607
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
608
|
-
----------------------------------------------------------------
|
609
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
610
|
-
----------------------------------------------------------------
|
611
|
-
Processing by Siringa::SiringaController#load as HTML
|
612
|
-
Parameters: {"definition"=>"initial"}
|
613
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
614
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
615
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
616
|
-
----------------------------------------------------------------------------
|
617
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
618
|
-
----------------------------------------------------------------------------
|
619
|
-
Processing by Siringa::SiringaController#load as HTML
|
620
|
-
Parameters: {"definition"=>"papapa"}
|
621
|
-
Rendered text template (0.0ms)
|
622
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
623
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
624
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
625
|
-
----------------------------------------------------------------
|
626
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
627
|
-
----------------------------------------------------------------
|
628
|
-
Processing by Siringa::SiringaController#load as HTML
|
629
|
-
Parameters: {"definition"=>"initial"}
|
630
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
631
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
632
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
633
|
-
Completed 201 Created in 8ms (Views: 0.3ms | ActiveRecord: 0.6ms)
|
634
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
635
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
636
|
-
----------------------------------------------------------------------------
|
637
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
638
|
-
----------------------------------------------------------------------------
|
639
|
-
Processing by Siringa::SiringaController#load as HTML
|
640
|
-
Parameters: {"definition"=>"papapa"}
|
641
|
-
Rendered text template (0.0ms)
|
642
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
643
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
644
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
645
|
-
----------------------------------------------------------------
|
646
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
647
|
-
----------------------------------------------------------------
|
648
|
-
Processing by Siringa::SiringaController#load as HTML
|
649
|
-
Parameters: {"definition"=>"initial"}
|
650
|
-
Completed 405 Method Not Allowed in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
651
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
652
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
653
|
-
----------------------------------------------------------------------------
|
654
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
655
|
-
----------------------------------------------------------------------------
|
656
|
-
Processing by Siringa::SiringaController#load as HTML
|
657
|
-
Parameters: {"definition"=>"papapa"}
|
658
|
-
Rendered text template (0.0ms)
|
659
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
660
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
661
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
662
|
-
----------------------------------------------------------------
|
663
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
664
|
-
----------------------------------------------------------------
|
665
|
-
Processing by Siringa::SiringaController#load as HTML
|
666
|
-
Parameters: {"definition"=>"initial"}
|
667
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
668
|
-
[1m[36mSQL (29919.8ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
669
|
-
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
670
|
-
Completed 500 Internal Server Error in 29931ms
|
671
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
672
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
673
|
-
----------------------------------------------------------------------------
|
674
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
675
|
-
----------------------------------------------------------------------------
|
676
|
-
Processing by Siringa::SiringaController#load as HTML
|
677
|
-
Parameters: {"definition"=>"papapa"}
|
678
|
-
Rendered text template (0.0ms)
|
679
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
680
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
681
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
682
|
-
----------------------------------------------------------------
|
683
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
684
|
-
----------------------------------------------------------------
|
685
|
-
Processing by Siringa::SiringaController#load as HTML
|
686
|
-
Parameters: {"definition"=>"initial"}
|
687
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
688
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
689
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
690
|
-
Completed 201 Created in 8ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
691
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
692
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
693
|
-
----------------------------------------------------------------------------
|
694
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
695
|
-
----------------------------------------------------------------------------
|
696
|
-
Processing by Siringa::SiringaController#load as HTML
|
697
|
-
Parameters: {"definition"=>"papapa"}
|
698
|
-
Rendered text template (0.0ms)
|
699
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
700
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
701
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
702
|
-
----------------------------------------------------------------
|
703
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
704
|
-
----------------------------------------------------------------
|
705
|
-
Processing by Siringa::SiringaController#load as HTML
|
706
|
-
Parameters: {"definition"=>"initial"}
|
707
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
708
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
709
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
710
|
-
Completed 201 Created in 8ms (Views: 0.3ms | ActiveRecord: 0.6ms)
|
711
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
712
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
713
|
-
----------------------------------------------------------------------------
|
714
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
715
|
-
----------------------------------------------------------------------------
|
716
|
-
Processing by Siringa::SiringaController#load as HTML
|
717
|
-
Parameters: {"definition"=>"papapa"}
|
718
|
-
Rendered text template (0.0ms)
|
719
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
720
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
721
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
722
|
-
----------------------------------------------------------------
|
723
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
724
|
-
----------------------------------------------------------------
|
725
|
-
Processing by Siringa::SiringaController#load as HTML
|
726
|
-
Parameters: {"definition"=>"initial"}
|
727
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
728
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
729
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
730
|
-
Completed 201 Created in 8ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
731
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
732
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
733
|
-
----------------------------------------------------------------------------
|
734
|
-
SiringaControllerTest: test_load_action_passing_a_factory_that_doesn't_exist
|
735
|
-
----------------------------------------------------------------------------
|
736
|
-
Processing by Siringa::SiringaController#load as HTML
|
737
|
-
Parameters: {"definition"=>"papapa"}
|
738
|
-
Rendered text template (0.0ms)
|
739
|
-
Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
740
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
741
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
742
|
-
----------------------------------------------------------------
|
743
|
-
SiringaControllerTest: test_load_action_passing_existing_factory
|
744
|
-
----------------------------------------------------------------
|
745
|
-
Processing by Siringa::SiringaController#load as HTML
|
746
|
-
Parameters: {"definition"=>"initial"}
|
747
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
748
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" DEFAULT VALUES[0m
|
749
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
750
|
-
Completed 201 Created in 8ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
751
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|