netzke-testing 0.11.2 → 0.12.0.beta
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 +4 -4
- data/README.md +3 -8
- data/app/assets/javascripts/netzke/testing/helpers/actions.js.coffee +0 -1
- data/app/assets/javascripts/netzke/testing/helpers/grid.js.coffee +2 -3
- data/app/assets/javascripts/netzke/testing/helpers/queries.js.coffee +2 -2
- data/app/views/layouts/netzke/testing.html.erb +6 -6
- data/lib/netzke/testing/engine.rb +3 -0
- data/lib/netzke/testing/helpers.rb +19 -8
- data/lib/netzke/testing/version.rb +1 -1
- data/netzke-testing.gemspec +2 -2
- data/spec/rails_app/Gemfile +4 -0
- data/spec/rails_app/Gemfile.lock +206 -0
- data/spec/rails_app/log/development.log +0 -88
- data/spec/rails_app/log/test.log +0 -355
- data/spec/rails_app/tmp/cache/assets/test/sprockets/3055607d4a01c24bb30f86d38b66be76 +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/8ffe76c9f2babb34fe924c4bc1fb9b58 +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/91bc8d8ad6e413fa5ab8aba410a129a3 +0 -0
- metadata +9 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb3da5b596092cfe5a5f207e0a2d8c63ec25580f
|
4
|
+
data.tar.gz: aaf9676f789ece47742006202670e73db131e662
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69886d061f50e9e0d1c3f313243ff66cae105c5d10b833abdb45c3cd3cdc0c1785b440a5ff8142c909b9953468b9455a094f5b341b4f648c34b67084adbcdeba
|
7
|
+
data.tar.gz: 4a97016c5e99918d3e7828dbf19f7667ab723dd4325f36c58c550f2930146b6c7ebb6f907d50873bb68ef3c116906477d380aa74e4c6d490c6518a7f818fedf4
|
data/README.md
CHANGED
@@ -105,23 +105,18 @@ helper provided by the `netzke_testing` gem. Here's an example (in `spec/user_gr
|
|
105
105
|
|
106
106
|
The `run_mocha_spec` here will run a Mocha spec from `spec/grid_with_destructive_button.js.coffee`.
|
107
107
|
|
108
|
-
You can explicitely specify a component to run the spec on:
|
108
|
+
You can explicitely specify a component to run the spec on (in order to override the convention):
|
109
109
|
|
110
110
|
run_mocha_spec 'grid_with_destructive_button', component: 'UserGrid'
|
111
111
|
|
112
|
-
To investigate the problem in case of a failing Mocha spec, set `stop_on_error` to `true` (this will keep the browser open on the failed spec):
|
113
|
-
|
114
|
-
run_mocha_spec 'grid_with_destructive_button', stop_on_error: true
|
115
|
-
|
116
|
-
(in this case you'll have to terminate the specs by pressing `ctrl+c`)
|
117
|
-
|
118
112
|
## Requirements
|
119
113
|
|
120
114
|
* Ruby >= 2.0.0
|
121
115
|
* Rails >= 4.2.0
|
116
|
+
* Ext JS = 5.1.0
|
122
117
|
|
123
118
|
---
|
124
|
-
Copyright (c) 2015 [Max Gorin](https://twitter.com/
|
119
|
+
Copyright (c) 2015 [Max Gorin](https://twitter.com/uptomax), released under the MIT license (see LICENSE).
|
125
120
|
|
126
121
|
**Note** that Ext JS is licensed [differently](http://www.sencha.com/products/extjs/license/), and you may need to
|
127
122
|
purchase a commercial license in order to use it in your projects!
|
@@ -9,8 +9,7 @@ Ext.apply window,
|
|
9
9
|
g = g || this.grid()
|
10
10
|
editor = g.getPlugin('celleditor')
|
11
11
|
column = g.headerCt.items.findIndex('name', field) - 1
|
12
|
-
|
13
|
-
editor.startEditByPosition({row: g.getSelectionModel().getCurrentPosition().row, column: column})
|
12
|
+
editor.startEditByPosition({row: g.getSelectionModel().getCurrentPosition().rowIdx, column: column})
|
14
13
|
editor.activeEditor.field.onTriggerClick()
|
15
14
|
|
16
15
|
# Example:
|
@@ -69,7 +68,7 @@ Ext.apply window,
|
|
69
68
|
visibleColumns.push(c) if c.isVisible()
|
70
69
|
|
71
70
|
i = -1
|
72
|
-
return Ext.Array.map(Ext.DomQuery.select('
|
71
|
+
return Ext.Array.map(Ext.DomQuery.select('table[data-recordid="'+record.internalId+'"] tbody tr td div'), (cell) ->
|
73
72
|
i++
|
74
73
|
if visibleColumns[i].attrType == 'boolean'
|
75
74
|
record.get(visibleColumns[i].name)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# KNOWN ISSUE: if the passed parameter contains symbols like "():,.", it results in an invalid query.
|
3
3
|
Ext.apply window,
|
4
4
|
header: (title) ->
|
5
|
-
Ext.ComponentQuery.query('
|
5
|
+
Ext.ComponentQuery.query('panel{isVisible(true)}[title="'+title+'"]')[0] || 'header ' + title
|
6
6
|
|
7
7
|
tab: (title) ->
|
8
8
|
Ext.ComponentQuery.query('tab[text="'+title+'"]')[0] || 'tab ' + title
|
@@ -28,7 +28,7 @@ Ext.apply window,
|
|
28
28
|
currentPanelTitle: ->
|
29
29
|
panel = Ext.ComponentQuery.query('panel[hidden=false]')[0]
|
30
30
|
throw "Panel not found" if !panel
|
31
|
-
panel.getHeader().
|
31
|
+
panel.getHeader().getTitle().text
|
32
32
|
|
33
33
|
combobox: (name) ->
|
34
34
|
Ext.ComponentQuery.query("combo{isVisible(true)}[name='"+name+"']")[0] ||
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<title>Netzke Testing</title>
|
5
5
|
<%= csrf_meta_tag %>
|
6
|
-
<%= load_netzke %>
|
6
|
+
<%= load_netzke(minified: false) %>
|
7
7
|
|
8
8
|
<% if params[:spec] %>
|
9
9
|
<%= javascript_include_tag "netzke/testing/expect/expect.js" %>
|
@@ -17,11 +17,11 @@
|
|
17
17
|
});
|
18
18
|
</script>
|
19
19
|
<% if !params["no-helpers"] %>
|
20
|
-
<%= javascript_include_tag "
|
21
|
-
<%= javascript_include_tag "
|
22
|
-
<%= javascript_include_tag "
|
23
|
-
<%= javascript_include_tag "
|
24
|
-
<%= javascript_include_tag "
|
20
|
+
<%= javascript_include_tag "netzke/testing/helpers/actions" %>
|
21
|
+
<%= javascript_include_tag "netzke/testing/helpers/queries" %>
|
22
|
+
<%= javascript_include_tag "netzke/testing/helpers/expectations" %>
|
23
|
+
<%= javascript_include_tag "netzke/testing/helpers/grid" %>
|
24
|
+
<%= javascript_include_tag "netzke/testing/helpers/form" %>
|
25
25
|
<% end %>
|
26
26
|
|
27
27
|
<% for path in Netzke::Testing.custom_js %>
|
@@ -8,12 +8,12 @@ module Netzke::Testing::Helpers
|
|
8
8
|
visit url
|
9
9
|
|
10
10
|
# Wait while the test is running
|
11
|
-
wait_for_javascript
|
11
|
+
wait_for_javascript
|
12
12
|
|
13
|
-
assert_mocha_results
|
13
|
+
assert_mocha_results
|
14
14
|
end
|
15
15
|
|
16
|
-
def wait_for_javascript
|
16
|
+
def wait_for_javascript
|
17
17
|
start = Time.now
|
18
18
|
loop do
|
19
19
|
page.execute_script("return Netzke.mochaDone;") ? break : sleep(0.1)
|
@@ -23,23 +23,34 @@ module Netzke::Testing::Helpers
|
|
23
23
|
end
|
24
24
|
|
25
25
|
rescue Selenium::WebDriver::Error::JavascriptError => e
|
26
|
-
|
26
|
+
# give some time for visual examination of the problem
|
27
|
+
# sleep 5
|
28
|
+
|
27
29
|
raise e
|
28
30
|
end
|
29
31
|
|
30
|
-
def assert_mocha_results
|
32
|
+
def assert_mocha_results
|
31
33
|
result = page.execute_script(<<-JS)
|
32
34
|
var runner = Netzke.mochaRunner;
|
35
|
+
var errors = [];
|
36
|
+
Ext.Array.each(runner.suite.suites[0].tests, function(t) { if (t.err) errors.push([t.title, t.err.toString()]) });
|
33
37
|
return {
|
34
38
|
test: runner.test.title,
|
35
39
|
success: runner.stats.failures == 0 && runner.stats.tests !=0,
|
36
|
-
error: runner.test.err && runner.test.err.toString()
|
40
|
+
error: runner.test.err && runner.test.err.toString(),
|
41
|
+
errors: errors
|
37
42
|
}
|
38
43
|
JS
|
39
44
|
|
40
45
|
if !result["success"]
|
41
|
-
|
42
|
-
|
46
|
+
# give some time for visual examination of the problem
|
47
|
+
# sleep 500
|
48
|
+
|
49
|
+
errors = result["errors"].each_with_index.map do |(title, error), i|
|
50
|
+
"#{i+1}) #{title}\n#{error}\n\n"
|
51
|
+
end
|
52
|
+
|
53
|
+
raise "Failures:\n#{errors.join}"
|
43
54
|
end
|
44
55
|
end
|
45
56
|
end
|
data/netzke-testing.gemspec
CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "netzke-testing"
|
8
8
|
spec.version = Netzke::Testing::VERSION
|
9
9
|
spec.authors = ["Max Gorin"]
|
10
|
-
spec.email = ["
|
10
|
+
spec.email = ["max@goodbitlabs.com"]
|
11
11
|
spec.summary = "Testing helpers for Netzke applications and gems"
|
12
12
|
spec.description = "Provides help with developing and testing Netzke components"
|
13
13
|
spec.homepage = "http://netzke.org"
|
@@ -25,5 +25,5 @@ Gem::Specification.new do |spec|
|
|
25
25
|
spec.add_development_dependency 'selenium-webdriver'
|
26
26
|
spec.add_development_dependency "rspec-rails"
|
27
27
|
spec.add_development_dependency "coffee-script"
|
28
|
-
spec.add_development_dependency 'netzke-core', '~> 0.
|
28
|
+
spec.add_development_dependency 'netzke-core', '~> 0.12.0.beta'
|
29
29
|
end
|
data/spec/rails_app/Gemfile
CHANGED
@@ -43,5 +43,9 @@ group :development, :test do
|
|
43
43
|
|
44
44
|
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
45
45
|
gem 'spring'
|
46
|
+
|
47
|
+
gem 'rspec-rails'
|
48
|
+
gem 'capybara'
|
49
|
+
gem 'selenium-webdriver'
|
46
50
|
end
|
47
51
|
|
@@ -0,0 +1,206 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
actionmailer (4.2.0)
|
5
|
+
actionpack (= 4.2.0)
|
6
|
+
actionview (= 4.2.0)
|
7
|
+
activejob (= 4.2.0)
|
8
|
+
mail (~> 2.5, >= 2.5.4)
|
9
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
10
|
+
actionpack (4.2.0)
|
11
|
+
actionview (= 4.2.0)
|
12
|
+
activesupport (= 4.2.0)
|
13
|
+
rack (~> 1.6.0)
|
14
|
+
rack-test (~> 0.6.2)
|
15
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
16
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.1)
|
17
|
+
actionview (4.2.0)
|
18
|
+
activesupport (= 4.2.0)
|
19
|
+
builder (~> 3.1)
|
20
|
+
erubis (~> 2.7.0)
|
21
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
22
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.1)
|
23
|
+
activejob (4.2.0)
|
24
|
+
activesupport (= 4.2.0)
|
25
|
+
globalid (>= 0.3.0)
|
26
|
+
activemodel (4.2.0)
|
27
|
+
activesupport (= 4.2.0)
|
28
|
+
builder (~> 3.1)
|
29
|
+
activerecord (4.2.0)
|
30
|
+
activemodel (= 4.2.0)
|
31
|
+
activesupport (= 4.2.0)
|
32
|
+
arel (~> 6.0)
|
33
|
+
activesupport (4.2.0)
|
34
|
+
i18n (~> 0.7)
|
35
|
+
json (~> 1.7, >= 1.7.7)
|
36
|
+
minitest (~> 5.1)
|
37
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
38
|
+
tzinfo (~> 1.1)
|
39
|
+
arel (6.0.0)
|
40
|
+
binding_of_caller (0.7.2)
|
41
|
+
debug_inspector (>= 0.0.1)
|
42
|
+
builder (3.2.2)
|
43
|
+
byebug (3.5.1)
|
44
|
+
columnize (~> 0.8)
|
45
|
+
debugger-linecache (~> 1.2)
|
46
|
+
slop (~> 3.6)
|
47
|
+
capybara (2.4.4)
|
48
|
+
mime-types (>= 1.16)
|
49
|
+
nokogiri (>= 1.3.3)
|
50
|
+
rack (>= 1.0.0)
|
51
|
+
rack-test (>= 0.5.4)
|
52
|
+
xpath (~> 2.0)
|
53
|
+
childprocess (0.5.5)
|
54
|
+
ffi (~> 1.0, >= 1.0.11)
|
55
|
+
coffee-rails (4.1.0)
|
56
|
+
coffee-script (>= 2.2.0)
|
57
|
+
railties (>= 4.0.0, < 5.0)
|
58
|
+
coffee-script (2.3.0)
|
59
|
+
coffee-script-source
|
60
|
+
execjs
|
61
|
+
coffee-script-source (1.9.1)
|
62
|
+
columnize (0.9.0)
|
63
|
+
debug_inspector (0.0.2)
|
64
|
+
debugger-linecache (1.2.0)
|
65
|
+
diff-lcs (1.2.5)
|
66
|
+
erubis (2.7.0)
|
67
|
+
execjs (2.4.0)
|
68
|
+
ffi (1.9.6)
|
69
|
+
globalid (0.3.3)
|
70
|
+
activesupport (>= 4.1.0)
|
71
|
+
hike (1.2.3)
|
72
|
+
i18n (0.7.0)
|
73
|
+
jbuilder (2.2.11)
|
74
|
+
activesupport (>= 3.0.0, < 5)
|
75
|
+
multi_json (~> 1.2)
|
76
|
+
jquery-rails (4.0.3)
|
77
|
+
rails-dom-testing (~> 1.0)
|
78
|
+
railties (>= 4.2.0)
|
79
|
+
thor (>= 0.14, < 2.0)
|
80
|
+
json (1.8.2)
|
81
|
+
loofah (2.0.1)
|
82
|
+
nokogiri (>= 1.5.9)
|
83
|
+
mail (2.6.3)
|
84
|
+
mime-types (>= 1.16, < 3)
|
85
|
+
mime-types (2.4.3)
|
86
|
+
mini_portile (0.6.2)
|
87
|
+
minitest (5.5.1)
|
88
|
+
multi_json (1.11.0)
|
89
|
+
netzke-core (0.11.0)
|
90
|
+
execjs
|
91
|
+
uglifier
|
92
|
+
nokogiri (1.6.6.2)
|
93
|
+
mini_portile (~> 0.6.0)
|
94
|
+
rack (1.6.0)
|
95
|
+
rack-test (0.6.3)
|
96
|
+
rack (>= 1.0)
|
97
|
+
rails (4.2.0)
|
98
|
+
actionmailer (= 4.2.0)
|
99
|
+
actionpack (= 4.2.0)
|
100
|
+
actionview (= 4.2.0)
|
101
|
+
activejob (= 4.2.0)
|
102
|
+
activemodel (= 4.2.0)
|
103
|
+
activerecord (= 4.2.0)
|
104
|
+
activesupport (= 4.2.0)
|
105
|
+
bundler (>= 1.3.0, < 2.0)
|
106
|
+
railties (= 4.2.0)
|
107
|
+
sprockets-rails
|
108
|
+
rails-deprecated_sanitizer (1.0.3)
|
109
|
+
activesupport (>= 4.2.0.alpha)
|
110
|
+
rails-dom-testing (1.0.5)
|
111
|
+
activesupport (>= 4.2.0.beta, < 5.0)
|
112
|
+
nokogiri (~> 1.6.0)
|
113
|
+
rails-deprecated_sanitizer (>= 1.0.1)
|
114
|
+
rails-html-sanitizer (1.0.1)
|
115
|
+
loofah (~> 2.0)
|
116
|
+
railties (4.2.0)
|
117
|
+
actionpack (= 4.2.0)
|
118
|
+
activesupport (= 4.2.0)
|
119
|
+
rake (>= 0.8.7)
|
120
|
+
thor (>= 0.18.1, < 2.0)
|
121
|
+
rake (10.4.2)
|
122
|
+
rdoc (4.2.0)
|
123
|
+
rspec-core (3.2.1)
|
124
|
+
rspec-support (~> 3.2.0)
|
125
|
+
rspec-expectations (3.2.0)
|
126
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
127
|
+
rspec-support (~> 3.2.0)
|
128
|
+
rspec-mocks (3.2.1)
|
129
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
130
|
+
rspec-support (~> 3.2.0)
|
131
|
+
rspec-rails (3.2.1)
|
132
|
+
actionpack (>= 3.0, < 4.3)
|
133
|
+
activesupport (>= 3.0, < 4.3)
|
134
|
+
railties (>= 3.0, < 4.3)
|
135
|
+
rspec-core (~> 3.2.0)
|
136
|
+
rspec-expectations (~> 3.2.0)
|
137
|
+
rspec-mocks (~> 3.2.0)
|
138
|
+
rspec-support (~> 3.2.0)
|
139
|
+
rspec-support (3.2.2)
|
140
|
+
rubyzip (1.1.7)
|
141
|
+
sass (3.4.13)
|
142
|
+
sass-rails (5.0.1)
|
143
|
+
railties (>= 4.0.0, < 5.0)
|
144
|
+
sass (~> 3.1)
|
145
|
+
sprockets (>= 2.8, < 4.0)
|
146
|
+
sprockets-rails (>= 2.0, < 4.0)
|
147
|
+
tilt (~> 1.1)
|
148
|
+
sdoc (0.4.1)
|
149
|
+
json (~> 1.7, >= 1.7.7)
|
150
|
+
rdoc (~> 4.0)
|
151
|
+
selenium-webdriver (2.45.0)
|
152
|
+
childprocess (~> 0.5)
|
153
|
+
multi_json (~> 1.0)
|
154
|
+
rubyzip (~> 1.0)
|
155
|
+
websocket (~> 1.0)
|
156
|
+
slop (3.6.0)
|
157
|
+
spring (1.3.3)
|
158
|
+
sprockets (2.12.3)
|
159
|
+
hike (~> 1.2)
|
160
|
+
multi_json (~> 1.0)
|
161
|
+
rack (~> 1.0)
|
162
|
+
tilt (~> 1.1, != 1.3.0)
|
163
|
+
sprockets-rails (2.2.4)
|
164
|
+
actionpack (>= 3.0)
|
165
|
+
activesupport (>= 3.0)
|
166
|
+
sprockets (>= 2.8, < 4.0)
|
167
|
+
sqlite3 (1.3.10)
|
168
|
+
thor (0.19.1)
|
169
|
+
thread_safe (0.3.4)
|
170
|
+
tilt (1.4.1)
|
171
|
+
turbolinks (2.5.3)
|
172
|
+
coffee-rails
|
173
|
+
tzinfo (1.2.2)
|
174
|
+
thread_safe (~> 0.1)
|
175
|
+
uglifier (2.7.1)
|
176
|
+
execjs (>= 0.3.0)
|
177
|
+
json (>= 1.8.0)
|
178
|
+
web-console (2.1.1)
|
179
|
+
activemodel (>= 4.0)
|
180
|
+
binding_of_caller (>= 0.7.2)
|
181
|
+
railties (>= 4.0)
|
182
|
+
sprockets-rails (>= 2.0, < 4.0)
|
183
|
+
websocket (1.2.1)
|
184
|
+
xpath (2.0.0)
|
185
|
+
nokogiri (~> 1.3)
|
186
|
+
|
187
|
+
PLATFORMS
|
188
|
+
ruby
|
189
|
+
|
190
|
+
DEPENDENCIES
|
191
|
+
byebug
|
192
|
+
capybara
|
193
|
+
coffee-rails (~> 4.1.0)
|
194
|
+
jbuilder (~> 2.0)
|
195
|
+
jquery-rails
|
196
|
+
netzke-core
|
197
|
+
rails (= 4.2.0)
|
198
|
+
rspec-rails
|
199
|
+
sass-rails (~> 5.0)
|
200
|
+
sdoc (~> 0.4.0)
|
201
|
+
selenium-webdriver
|
202
|
+
spring
|
203
|
+
sqlite3
|
204
|
+
turbolinks
|
205
|
+
uglifier (>= 1.3.0)
|
206
|
+
web-console (~> 2.0)
|
@@ -541,91 +541,3 @@ Started GET "/netzke/ext.js" for 127.0.0.1 at 2015-03-08 15:36:24 +0700
|
|
541
541
|
Processing by NetzkeController#ext as JS
|
542
542
|
Rendered text template (0.1ms)
|
543
543
|
Completed 200 OK in 24ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
544
|
-
|
545
|
-
|
546
|
-
Started GET "/" for ::1 at 2015-03-16 16:47:12 +0700
|
547
|
-
Processing by Rails::WelcomeController#index as HTML
|
548
|
-
Rendered /Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (2.2ms)
|
549
|
-
Completed 200 OK in 19ms (Views: 11.1ms | ActiveRecord: 0.0ms)
|
550
|
-
|
551
|
-
|
552
|
-
Started GET "/netzke/components/Foo" for ::1 at 2015-03-16 16:47:18 +0700
|
553
|
-
Processing by Netzke::TestingController#components as HTML
|
554
|
-
Parameters: {"class"=>"Foo"}
|
555
|
-
Rendered inline template within layouts/netzke/testing (3.4ms)
|
556
|
-
Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.0ms)
|
557
|
-
|
558
|
-
|
559
|
-
Started GET "/netzke/ext.js" for ::1 at 2015-03-16 16:47:18 +0700
|
560
|
-
Processing by NetzkeController#ext as JS
|
561
|
-
Rendered text template (0.0ms)
|
562
|
-
Completed 200 OK in 5ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
563
|
-
|
564
|
-
|
565
|
-
Started GET "/netzke/ext.css" for ::1 at 2015-03-16 16:47:18 +0700
|
566
|
-
Processing by NetzkeController#ext as CSS
|
567
|
-
Rendered text template (0.0ms)
|
568
|
-
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
569
|
-
|
570
|
-
|
571
|
-
Started GET "/extjs/build/ext-all-debug.js" for ::1 at 2015-03-16 16:47:18 +0700
|
572
|
-
|
573
|
-
ActionController::RoutingError (No route matches [GET] "/extjs/build/ext-all-debug.js"):
|
574
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
575
|
-
web-console (2.1.2) lib/web_console/middleware.rb:37:in `call'
|
576
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
577
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
578
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
579
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
580
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
581
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
582
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
583
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
584
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
585
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
586
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
587
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
588
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
589
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
590
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
591
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
592
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
593
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
594
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
595
|
-
/Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
596
|
-
/Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
597
|
-
/Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
598
|
-
|
599
|
-
|
600
|
-
Rendered /Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
|
601
|
-
Rendered /Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
|
602
|
-
Rendered /Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.1ms)
|
603
|
-
Rendered /Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
|
604
|
-
Rendered /Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.2ms)
|
605
|
-
Rendered /Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (0.4ms)
|
606
|
-
Rendered /Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
|
607
|
-
Rendered /Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
|
608
|
-
Rendered /Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
|
609
|
-
Rendered /Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (48.8ms)
|
610
|
-
Rendered /Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
|
611
|
-
Rendered /Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
|
612
|
-
Rendered /Users/mxgrn/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (107.7ms)
|
613
|
-
|
614
|
-
|
615
|
-
Started GET "/netzke/components/Foo" for ::1 at 2015-03-16 16:47:47 +0700
|
616
|
-
Processing by Netzke::TestingController#components as HTML
|
617
|
-
Parameters: {"class"=>"Foo"}
|
618
|
-
Rendered inline template within layouts/netzke/testing (5.0ms)
|
619
|
-
Completed 200 OK in 25ms (Views: 16.8ms | ActiveRecord: 0.0ms)
|
620
|
-
|
621
|
-
|
622
|
-
Started GET "/netzke/ext.js" for ::1 at 2015-03-16 16:47:47 +0700
|
623
|
-
Processing by NetzkeController#ext as JS
|
624
|
-
Rendered text template (0.0ms)
|
625
|
-
Completed 200 OK in 5ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
626
|
-
|
627
|
-
|
628
|
-
Started GET "/netzke/ext.css" for ::1 at 2015-03-16 16:47:47 +0700
|
629
|
-
Processing by NetzkeController#ext as CSS
|
630
|
-
Rendered text template (0.0ms)
|
631
|
-
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
data/spec/rails_app/log/test.log
CHANGED
@@ -506,358 +506,3 @@ Processing by Netzke::TestingController#specs as JS
|
|
506
506
|
Parameters: {"name"=>"foo"}
|
507
507
|
Rendered text template (0.0ms)
|
508
508
|
Completed 200 OK in 260ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
509
|
-
Started GET "/netzke/components/Foo?spec=true" for 127.0.0.1 at 2015-03-08 21:36:08 +0700
|
510
|
-
Processing by Netzke::TestingController#components as HTML
|
511
|
-
Parameters: {"spec"=>"true", "class"=>"Foo"}
|
512
|
-
Rendered inline template within layouts/netzke/testing (13.1ms)
|
513
|
-
Completed 200 OK in 31ms (Views: 31.0ms | ActiveRecord: 0.0ms)
|
514
|
-
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-03-08 21:36:09 +0700
|
515
|
-
Processing by Netzke::TestingController#components as HTML
|
516
|
-
Parameters: {"class"=>"Foo"}
|
517
|
-
Rendered inline template within layouts/netzke/testing (1.0ms)
|
518
|
-
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
519
|
-
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-03-08 21:36:09 +0700
|
520
|
-
Processing by Netzke::TestingController#components as HTML
|
521
|
-
Parameters: {"class"=>"Foo"}
|
522
|
-
Rendered inline template within layouts/netzke/testing (0.9ms)
|
523
|
-
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
524
|
-
Started GET "/netzke/components/Foo?no-helpers=true&spec=true" for 127.0.0.1 at 2015-03-08 21:36:09 +0700
|
525
|
-
Processing by Netzke::TestingController#components as HTML
|
526
|
-
Parameters: {"no-helpers"=>"true", "spec"=>"true", "class"=>"Foo"}
|
527
|
-
Rendered inline template within layouts/netzke/testing (1.0ms)
|
528
|
-
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
529
|
-
Started GET "/netzke/components/Foo?spec=true" for 127.0.0.1 at 2015-03-08 21:36:09 +0700
|
530
|
-
Processing by Netzke::TestingController#components as HTML
|
531
|
-
Parameters: {"spec"=>"true", "class"=>"Foo"}
|
532
|
-
Rendered inline template within layouts/netzke/testing (0.9ms)
|
533
|
-
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
534
|
-
Started GET "/netzke/components/Foo?spec=foo" for 127.0.0.1 at 2015-03-16 16:46:42 +0700
|
535
|
-
Processing by Netzke::TestingController#components as HTML
|
536
|
-
Parameters: {"spec"=>"foo", "class"=>"Foo"}
|
537
|
-
Rendered inline template within layouts/netzke/testing (14.8ms)
|
538
|
-
Completed 200 OK in 40ms (Views: 39.4ms | ActiveRecord: 0.0ms)
|
539
|
-
Started GET "/extjs/packages/ext-theme-crisp/build/resources/ext-theme-crisp-all.css" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
540
|
-
Started GET "/netzke/ext.css" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
541
|
-
Processing by NetzkeController#ext as CSS
|
542
|
-
Rendered text template (0.0ms)
|
543
|
-
Completed 200 OK in 9ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
544
|
-
Started GET "/assets/netzke/testing/mocha/mocha.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
545
|
-
Started GET "/assets/netzke/testing/expect/expect.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
546
|
-
Started GET "/netzke/ext.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
547
|
-
Processing by NetzkeController#ext as JS
|
548
|
-
Rendered text template (0.0ms)
|
549
|
-
Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
550
|
-
Started GET "/assets/netzke/testing/mocha/mocha.css" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
551
|
-
Started GET "/extjs/build/ext-all-debug.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
552
|
-
Started GET "/assets/netzke/testing/helpers/queries.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
553
|
-
Started GET "/assets/netzke/testing/helpers/actions.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
554
|
-
Started GET "/assets/netzke/testing/helpers/expectations.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
555
|
-
Started GET "/assets/netzke/testing/helpers/form.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
556
|
-
Started GET "/assets/netzke/testing/helpers/grid.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
557
|
-
Started GET "/netzke/specs/foo.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
558
|
-
Processing by Netzke::TestingController#specs as JS
|
559
|
-
Parameters: {"name"=>"foo"}
|
560
|
-
Rendered text template (0.0ms)
|
561
|
-
Completed 200 OK in 84ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
562
|
-
Started GET "/assets/custom.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
563
|
-
Started GET "/netzke/components/Foo?spec=true" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
564
|
-
Processing by Netzke::TestingController#components as HTML
|
565
|
-
Parameters: {"spec"=>"true", "class"=>"Foo"}
|
566
|
-
Rendered inline template within layouts/netzke/testing (1.5ms)
|
567
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
568
|
-
Started GET "/netzke/ext.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
569
|
-
Processing by NetzkeController#ext as JS
|
570
|
-
Rendered text template (0.0ms)
|
571
|
-
Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
572
|
-
Started GET "/netzke/ext.css" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
573
|
-
Processing by NetzkeController#ext as CSS
|
574
|
-
Rendered text template (0.0ms)
|
575
|
-
Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
576
|
-
Started GET "/extjs/build/ext-all-debug.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
577
|
-
Started GET "/extjs/packages/ext-theme-crisp/build/resources/ext-theme-crisp-all.css" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
578
|
-
Started GET "/netzke/specs/true.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
579
|
-
Processing by Netzke::TestingController#specs as JS
|
580
|
-
Parameters: {"name"=>"true"}
|
581
|
-
Completed 500 Internal Server Error in 0ms
|
582
|
-
Started GET "/netzke/specs/true.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
583
|
-
Processing by Netzke::TestingController#specs as JS
|
584
|
-
Parameters: {"name"=>"true"}
|
585
|
-
Completed 500 Internal Server Error in 0ms
|
586
|
-
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
587
|
-
Processing by Netzke::TestingController#components as HTML
|
588
|
-
Parameters: {"class"=>"Foo"}
|
589
|
-
Rendered inline template within layouts/netzke/testing (1.0ms)
|
590
|
-
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
591
|
-
Started GET "/netzke/ext.css" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
592
|
-
Processing by NetzkeController#ext as CSS
|
593
|
-
Rendered text template (0.0ms)
|
594
|
-
Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
595
|
-
Started GET "/extjs/packages/ext-theme-crisp/build/resources/ext-theme-crisp-all.css" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
596
|
-
Started GET "/netzke/ext.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
597
|
-
Processing by NetzkeController#ext as JS
|
598
|
-
Rendered text template (0.0ms)
|
599
|
-
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
600
|
-
Started GET "/extjs/build/ext-all-debug.js" for 127.0.0.1 at 2015-03-16 16:46:43 +0700
|
601
|
-
Started GET "/netzke/components/Foo?no-helpers=true&spec=true" for 127.0.0.1 at 2015-03-16 16:46:44 +0700
|
602
|
-
Processing by Netzke::TestingController#components as HTML
|
603
|
-
Parameters: {"no-helpers"=>"true", "spec"=>"true", "class"=>"Foo"}
|
604
|
-
Rendered inline template within layouts/netzke/testing (1.2ms)
|
605
|
-
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
606
|
-
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-03-16 16:46:44 +0700
|
607
|
-
Processing by Netzke::TestingController#components as HTML
|
608
|
-
Parameters: {"class"=>"Foo"}
|
609
|
-
Rendered inline template within layouts/netzke/testing (1.2ms)
|
610
|
-
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
611
|
-
Started GET "/netzke/components/Foo?spec=true" for 127.0.0.1 at 2015-03-16 16:46:44 +0700
|
612
|
-
Processing by Netzke::TestingController#components as HTML
|
613
|
-
Parameters: {"spec"=>"true", "class"=>"Foo"}
|
614
|
-
Rendered inline template within layouts/netzke/testing (2.0ms)
|
615
|
-
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
616
|
-
Started GET "/netzke/components/Foo?spec=foo" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
617
|
-
Processing by Netzke::TestingController#components as HTML
|
618
|
-
Parameters: {"spec"=>"foo", "class"=>"Foo"}
|
619
|
-
Rendered inline template within layouts/netzke/testing (13.5ms)
|
620
|
-
Completed 200 OK in 34ms (Views: 33.8ms | ActiveRecord: 0.0ms)
|
621
|
-
Started GET "/extjs/packages/ext-theme-crisp/build/resources/ext-theme-crisp-all.css" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
622
|
-
Started GET "/netzke/ext.css" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
623
|
-
Processing by NetzkeController#ext as CSS
|
624
|
-
Rendered text template (0.0ms)
|
625
|
-
Completed 200 OK in 6ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
626
|
-
Started GET "/extjs/build/ext-all-debug.js" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
627
|
-
Started GET "/assets/netzke/testing/mocha/mocha.js" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
628
|
-
Started GET "/assets/netzke/testing/mocha/mocha.css" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
629
|
-
Started GET "/assets/netzke/testing/expect/expect.js" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
630
|
-
Started GET "/netzke/ext.js" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
631
|
-
Processing by NetzkeController#ext as JS
|
632
|
-
Rendered text template (0.0ms)
|
633
|
-
Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
634
|
-
Started GET "/assets/netzke/testing/helpers/actions.js" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
635
|
-
Started GET "/assets/netzke/testing/helpers/expectations.js" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
636
|
-
Started GET "/assets/netzke/testing/helpers/queries.js" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
637
|
-
Started GET "/assets/netzke/testing/helpers/form.js" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
638
|
-
Started GET "/assets/netzke/testing/helpers/grid.js" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
639
|
-
Started GET "/assets/custom.js" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
640
|
-
Started GET "/netzke/specs/foo.js" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
641
|
-
Processing by Netzke::TestingController#specs as JS
|
642
|
-
Parameters: {"name"=>"foo"}
|
643
|
-
Rendered text template (0.0ms)
|
644
|
-
Completed 200 OK in 79ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
645
|
-
Started GET "/netzke/components/Foo?no-helpers=true&spec=true" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
646
|
-
Processing by Netzke::TestingController#components as HTML
|
647
|
-
Parameters: {"no-helpers"=>"true", "spec"=>"true", "class"=>"Foo"}
|
648
|
-
Rendered inline template within layouts/netzke/testing (1.6ms)
|
649
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
650
|
-
Started GET "/extjs/packages/ext-theme-crisp/build/resources/ext-theme-crisp-all.css" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
651
|
-
Started GET "/netzke/ext.css" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
652
|
-
Processing by NetzkeController#ext as CSS
|
653
|
-
Rendered text template (0.0ms)
|
654
|
-
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
655
|
-
Started GET "/extjs/build/ext-all-debug.js" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
656
|
-
Started GET "/netzke/ext.js" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
657
|
-
Processing by NetzkeController#ext as JS
|
658
|
-
Rendered text template (0.0ms)
|
659
|
-
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
660
|
-
Started GET "/netzke/specs/true.js" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
661
|
-
Processing by Netzke::TestingController#specs as JS
|
662
|
-
Parameters: {"name"=>"true"}
|
663
|
-
Completed 500 Internal Server Error in 1ms
|
664
|
-
Started GET "/netzke/specs/true.js" for 127.0.0.1 at 2015-03-16 16:46:51 +0700
|
665
|
-
Processing by Netzke::TestingController#specs as JS
|
666
|
-
Parameters: {"name"=>"true"}
|
667
|
-
Completed 500 Internal Server Error in 0ms
|
668
|
-
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-03-16 16:46:52 +0700
|
669
|
-
Processing by Netzke::TestingController#components as HTML
|
670
|
-
Parameters: {"class"=>"Foo"}
|
671
|
-
Rendered inline template within layouts/netzke/testing (1.1ms)
|
672
|
-
Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
673
|
-
Started GET "/netzke/ext.css" for 127.0.0.1 at 2015-03-16 16:46:52 +0700
|
674
|
-
Processing by NetzkeController#ext as CSS
|
675
|
-
Rendered text template (0.0ms)
|
676
|
-
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
677
|
-
Started GET "/extjs/packages/ext-theme-crisp/build/resources/ext-theme-crisp-all.css" for 127.0.0.1 at 2015-03-16 16:46:52 +0700
|
678
|
-
Started GET "/extjs/build/ext-all-debug.js" for 127.0.0.1 at 2015-03-16 16:46:52 +0700
|
679
|
-
Started GET "/netzke/ext.js" for 127.0.0.1 at 2015-03-16 16:46:52 +0700
|
680
|
-
Processing by NetzkeController#ext as JS
|
681
|
-
Rendered text template (0.0ms)
|
682
|
-
Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
683
|
-
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-03-16 16:46:52 +0700
|
684
|
-
Processing by Netzke::TestingController#components as HTML
|
685
|
-
Parameters: {"class"=>"Foo"}
|
686
|
-
Rendered inline template within layouts/netzke/testing (2.6ms)
|
687
|
-
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
688
|
-
Started GET "/extjs/packages/ext-theme-crisp/build/resources/ext-theme-crisp-all.css" for 127.0.0.1 at 2015-03-16 16:46:52 +0700
|
689
|
-
Started GET "/netzke/ext.css" for 127.0.0.1 at 2015-03-16 16:46:52 +0700
|
690
|
-
Processing by NetzkeController#ext as CSS
|
691
|
-
Rendered text template (0.0ms)
|
692
|
-
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
693
|
-
Started GET "/extjs/build/ext-all-debug.js" for 127.0.0.1 at 2015-03-16 16:46:52 +0700
|
694
|
-
Started GET "/netzke/ext.js" for 127.0.0.1 at 2015-03-16 16:46:52 +0700
|
695
|
-
Processing by NetzkeController#ext as JS
|
696
|
-
Rendered text template (0.0ms)
|
697
|
-
Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
698
|
-
Started GET "/netzke/components/Foo?spec=true" for 127.0.0.1 at 2015-03-16 16:46:52 +0700
|
699
|
-
Processing by Netzke::TestingController#components as HTML
|
700
|
-
Parameters: {"spec"=>"true", "class"=>"Foo"}
|
701
|
-
Rendered inline template within layouts/netzke/testing (1.4ms)
|
702
|
-
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
703
|
-
Started GET "/netzke/components/Foo?spec=true" for 127.0.0.1 at 2015-03-16 16:46:52 +0700
|
704
|
-
Processing by Netzke::TestingController#components as HTML
|
705
|
-
Parameters: {"spec"=>"true", "class"=>"Foo"}
|
706
|
-
Rendered inline template within layouts/netzke/testing (1.3ms)
|
707
|
-
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
708
|
-
Started GET "/netzke/components/Foo?no-helpers=true&spec=true" for 127.0.0.1 at 2015-03-16 16:48:02 +0700
|
709
|
-
Processing by Netzke::TestingController#components as HTML
|
710
|
-
Parameters: {"no-helpers"=>"true", "spec"=>"true", "class"=>"Foo"}
|
711
|
-
Rendered inline template within layouts/netzke/testing (10.7ms)
|
712
|
-
Completed 200 OK in 26ms (Views: 25.9ms | ActiveRecord: 0.0ms)
|
713
|
-
Started GET "/netzke/components/Foo?spec=true" for 127.0.0.1 at 2015-03-16 16:48:02 +0700
|
714
|
-
Processing by Netzke::TestingController#components as HTML
|
715
|
-
Parameters: {"spec"=>"true", "class"=>"Foo"}
|
716
|
-
Rendered inline template within layouts/netzke/testing (1.1ms)
|
717
|
-
Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
|
718
|
-
Started GET "/netzke/components/Foo?spec=true" for 127.0.0.1 at 2015-03-16 16:48:02 +0700
|
719
|
-
Processing by Netzke::TestingController#components as HTML
|
720
|
-
Parameters: {"spec"=>"true", "class"=>"Foo"}
|
721
|
-
Rendered inline template within layouts/netzke/testing (1.0ms)
|
722
|
-
Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
723
|
-
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-03-16 16:48:02 +0700
|
724
|
-
Processing by Netzke::TestingController#components as HTML
|
725
|
-
Parameters: {"class"=>"Foo"}
|
726
|
-
Rendered inline template within layouts/netzke/testing (1.0ms)
|
727
|
-
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
728
|
-
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-03-16 16:48:02 +0700
|
729
|
-
Processing by Netzke::TestingController#components as HTML
|
730
|
-
Parameters: {"class"=>"Foo"}
|
731
|
-
Rendered inline template within layouts/netzke/testing (1.5ms)
|
732
|
-
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
733
|
-
Started GET "/netzke/components/Foo?spec=foo" for 127.0.0.1 at 2015-03-16 16:48:04 +0700
|
734
|
-
Processing by Netzke::TestingController#components as HTML
|
735
|
-
Parameters: {"spec"=>"foo", "class"=>"Foo"}
|
736
|
-
Rendered inline template within layouts/netzke/testing (2.4ms)
|
737
|
-
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
738
|
-
Started GET "/netzke/ext.css" for 127.0.0.1 at 2015-03-16 16:48:04 +0700
|
739
|
-
Processing by NetzkeController#ext as CSS
|
740
|
-
Rendered text template (0.0ms)
|
741
|
-
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
742
|
-
Started GET "/netzke/ext.js" for 127.0.0.1 at 2015-03-16 16:48:04 +0700
|
743
|
-
Processing by NetzkeController#ext as JS
|
744
|
-
Rendered text template (0.0ms)
|
745
|
-
Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
746
|
-
Started GET "/assets/netzke/testing/mocha/mocha.js" for 127.0.0.1 at 2015-03-16 16:48:04 +0700
|
747
|
-
Started GET "/assets/netzke/testing/expect/expect.js" for 127.0.0.1 at 2015-03-16 16:48:04 +0700
|
748
|
-
Started GET "/assets/netzke/testing/mocha/mocha.css" for 127.0.0.1 at 2015-03-16 16:48:04 +0700
|
749
|
-
Started GET "/assets/netzke/testing/helpers/actions.js" for 127.0.0.1 at 2015-03-16 16:48:04 +0700
|
750
|
-
Started GET "/assets/netzke/testing/helpers/queries.js" for 127.0.0.1 at 2015-03-16 16:48:04 +0700
|
751
|
-
Started GET "/assets/netzke/testing/helpers/expectations.js" for 127.0.0.1 at 2015-03-16 16:48:04 +0700
|
752
|
-
Started GET "/assets/netzke/testing/helpers/grid.js" for 127.0.0.1 at 2015-03-16 16:48:04 +0700
|
753
|
-
Started GET "/assets/custom.js" for 127.0.0.1 at 2015-03-16 16:48:04 +0700
|
754
|
-
Started GET "/assets/netzke/testing/helpers/form.js" for 127.0.0.1 at 2015-03-16 16:48:04 +0700
|
755
|
-
Started GET "/netzke/specs/foo.js" for 127.0.0.1 at 2015-03-16 16:48:04 +0700
|
756
|
-
Processing by Netzke::TestingController#specs as JS
|
757
|
-
Parameters: {"name"=>"foo"}
|
758
|
-
Rendered text template (0.0ms)
|
759
|
-
Completed 200 OK in 236ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
760
|
-
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-03-18 11:05:49 +0700
|
761
|
-
Processing by Netzke::TestingController#components as HTML
|
762
|
-
Parameters: {"class"=>"Foo"}
|
763
|
-
Rendered inline template within layouts/netzke/testing (11.5ms)
|
764
|
-
Completed 200 OK in 20ms (Views: 20.2ms | ActiveRecord: 0.0ms)
|
765
|
-
Started GET "/netzke/components/Foo?spec=true" for 127.0.0.1 at 2015-03-18 11:05:49 +0700
|
766
|
-
Processing by Netzke::TestingController#components as HTML
|
767
|
-
Parameters: {"spec"=>"true", "class"=>"Foo"}
|
768
|
-
Rendered inline template within layouts/netzke/testing (1.2ms)
|
769
|
-
Completed 200 OK in 130ms (Views: 129.6ms | ActiveRecord: 0.0ms)
|
770
|
-
Started GET "/netzke/components/Foo?spec=true" for 127.0.0.1 at 2015-03-18 11:05:49 +0700
|
771
|
-
Processing by Netzke::TestingController#components as HTML
|
772
|
-
Parameters: {"spec"=>"true", "class"=>"Foo"}
|
773
|
-
Rendered inline template within layouts/netzke/testing (1.3ms)
|
774
|
-
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
775
|
-
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-03-18 11:05:49 +0700
|
776
|
-
Processing by Netzke::TestingController#components as HTML
|
777
|
-
Parameters: {"class"=>"Foo"}
|
778
|
-
Rendered inline template within layouts/netzke/testing (0.9ms)
|
779
|
-
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
780
|
-
Started GET "/netzke/components/Foo?no-helpers=true&spec=true" for 127.0.0.1 at 2015-03-18 11:05:49 +0700
|
781
|
-
Processing by Netzke::TestingController#components as HTML
|
782
|
-
Parameters: {"no-helpers"=>"true", "spec"=>"true", "class"=>"Foo"}
|
783
|
-
Rendered inline template within layouts/netzke/testing (0.9ms)
|
784
|
-
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
785
|
-
Started GET "/netzke/components/Foo?spec=foo" for 127.0.0.1 at 2015-03-18 11:05:52 +0700
|
786
|
-
Processing by Netzke::TestingController#components as HTML
|
787
|
-
Parameters: {"spec"=>"foo", "class"=>"Foo"}
|
788
|
-
Rendered inline template within layouts/netzke/testing (2.4ms)
|
789
|
-
Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
790
|
-
Started GET "/netzke/ext.css" for 127.0.0.1 at 2015-03-18 11:05:52 +0700
|
791
|
-
Processing by NetzkeController#ext as CSS
|
792
|
-
Rendered text template (0.0ms)
|
793
|
-
Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.0ms)
|
794
|
-
Started GET "/netzke/ext.js" for 127.0.0.1 at 2015-03-18 11:05:52 +0700
|
795
|
-
Processing by NetzkeController#ext as JS
|
796
|
-
Rendered text template (0.0ms)
|
797
|
-
Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
798
|
-
Started GET "/assets/netzke/testing/expect/expect.js" for 127.0.0.1 at 2015-03-18 11:05:52 +0700
|
799
|
-
Started GET "/assets/netzke/testing/mocha/mocha.js" for 127.0.0.1 at 2015-03-18 11:05:52 +0700
|
800
|
-
Started GET "/assets/netzke/testing/mocha/mocha.css" for 127.0.0.1 at 2015-03-18 11:05:52 +0700
|
801
|
-
Started GET "/assets/netzke/testing/helpers/queries.js" for 127.0.0.1 at 2015-03-18 11:05:52 +0700
|
802
|
-
Started GET "/assets/netzke/testing/helpers/actions.js" for 127.0.0.1 at 2015-03-18 11:05:52 +0700
|
803
|
-
Started GET "/assets/netzke/testing/helpers/expectations.js" for 127.0.0.1 at 2015-03-18 11:05:52 +0700
|
804
|
-
Started GET "/assets/netzke/testing/helpers/grid.js" for 127.0.0.1 at 2015-03-18 11:05:52 +0700
|
805
|
-
Started GET "/assets/custom.js" for 127.0.0.1 at 2015-03-18 11:05:52 +0700
|
806
|
-
Started GET "/assets/netzke/testing/helpers/form.js" for 127.0.0.1 at 2015-03-18 11:05:52 +0700
|
807
|
-
Started GET "/netzke/specs/foo.js" for 127.0.0.1 at 2015-03-18 11:05:52 +0700
|
808
|
-
Processing by Netzke::TestingController#specs as JS
|
809
|
-
Parameters: {"name"=>"foo"}
|
810
|
-
Rendered text template (0.0ms)
|
811
|
-
Completed 200 OK in 132ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
812
|
-
Started GET "/netzke/components/Foo?spec=foo" for 127.0.0.1 at 2015-04-20 22:37:58 +0545
|
813
|
-
Processing by Netzke::TestingController#components as HTML
|
814
|
-
Parameters: {"spec"=>"foo", "class"=>"Foo"}
|
815
|
-
Rendered inline template within layouts/netzke/testing (19.1ms)
|
816
|
-
Completed 200 OK in 63ms (Views: 62.7ms | ActiveRecord: 0.0ms)
|
817
|
-
Started GET "/netzke/ext.css" for 127.0.0.1 at 2015-04-20 22:37:58 +0545
|
818
|
-
Processing by NetzkeController#ext as CSS
|
819
|
-
Rendered text template (0.0ms)
|
820
|
-
Completed 200 OK in 13ms (Views: 7.8ms | ActiveRecord: 0.0ms)
|
821
|
-
Started GET "/netzke/ext.js" for 127.0.0.1 at 2015-04-20 22:37:59 +0545
|
822
|
-
Processing by NetzkeController#ext as JS
|
823
|
-
Rendered text template (0.1ms)
|
824
|
-
Completed 200 OK in 9ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
825
|
-
Started GET "/assets/netzke/testing/expect/expect.js" for 127.0.0.1 at 2015-04-20 22:37:59 +0545
|
826
|
-
Started GET "/assets/netzke/testing/mocha/mocha.css" for 127.0.0.1 at 2015-04-20 22:37:59 +0545
|
827
|
-
Started GET "/assets/netzke/testing/mocha/mocha.js" for 127.0.0.1 at 2015-04-20 22:37:59 +0545
|
828
|
-
Started GET "/assets/netzke/testing/helpers/actions.js" for 127.0.0.1 at 2015-04-20 22:37:59 +0545
|
829
|
-
Started GET "/assets/netzke/testing/helpers/queries.js" for 127.0.0.1 at 2015-04-20 22:37:59 +0545
|
830
|
-
Started GET "/assets/netzke/testing/helpers/expectations.js" for 127.0.0.1 at 2015-04-20 22:37:59 +0545
|
831
|
-
Started GET "/assets/netzke/testing/helpers/grid.js" for 127.0.0.1 at 2015-04-20 22:37:59 +0545
|
832
|
-
Started GET "/assets/custom.js" for 127.0.0.1 at 2015-04-20 22:37:59 +0545
|
833
|
-
Started GET "/assets/netzke/testing/helpers/form.js" for 127.0.0.1 at 2015-04-20 22:37:59 +0545
|
834
|
-
Started GET "/netzke/specs/foo.js" for 127.0.0.1 at 2015-04-20 22:37:59 +0545
|
835
|
-
Processing by Netzke::TestingController#specs as JS
|
836
|
-
Parameters: {"name"=>"foo"}
|
837
|
-
Rendered text template (0.0ms)
|
838
|
-
Completed 200 OK in 197ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
839
|
-
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-04-20 22:38:08 +0545
|
840
|
-
Processing by Netzke::TestingController#components as HTML
|
841
|
-
Parameters: {"class"=>"Foo"}
|
842
|
-
Rendered inline template within layouts/netzke/testing (1.2ms)
|
843
|
-
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
844
|
-
Started GET "/netzke/components/Foo?spec=true" for 127.0.0.1 at 2015-04-20 22:38:08 +0545
|
845
|
-
Processing by Netzke::TestingController#components as HTML
|
846
|
-
Parameters: {"spec"=>"true", "class"=>"Foo"}
|
847
|
-
Rendered inline template within layouts/netzke/testing (1.1ms)
|
848
|
-
Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
849
|
-
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-04-20 22:38:08 +0545
|
850
|
-
Processing by Netzke::TestingController#components as HTML
|
851
|
-
Parameters: {"class"=>"Foo"}
|
852
|
-
Rendered inline template within layouts/netzke/testing (1.1ms)
|
853
|
-
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
854
|
-
Started GET "/netzke/components/Foo?no-helpers=true&spec=true" for 127.0.0.1 at 2015-04-20 22:38:08 +0545
|
855
|
-
Processing by Netzke::TestingController#components as HTML
|
856
|
-
Parameters: {"no-helpers"=>"true", "spec"=>"true", "class"=>"Foo"}
|
857
|
-
Rendered inline template within layouts/netzke/testing (1.0ms)
|
858
|
-
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
859
|
-
Started GET "/netzke/components/Foo?spec=true" for 127.0.0.1 at 2015-04-20 22:38:08 +0545
|
860
|
-
Processing by Netzke::TestingController#components as HTML
|
861
|
-
Parameters: {"spec"=>"true", "class"=>"Foo"}
|
862
|
-
Rendered inline template within layouts/netzke/testing (1.2ms)
|
863
|
-
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: netzke-testing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0.beta
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Max Gorin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-03-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -128,17 +128,17 @@ dependencies:
|
|
128
128
|
requirements:
|
129
129
|
- - "~>"
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version: 0.
|
131
|
+
version: 0.12.0.beta
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
136
|
- - "~>"
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version: 0.
|
138
|
+
version: 0.12.0.beta
|
139
139
|
description: Provides help with developing and testing Netzke components
|
140
140
|
email:
|
141
|
-
-
|
141
|
+
- max@goodbitlabs.com
|
142
142
|
executables: []
|
143
143
|
extensions: []
|
144
144
|
extra_rdoc_files: []
|
@@ -169,6 +169,7 @@ files:
|
|
169
169
|
- spec/features/foo_spec.rb
|
170
170
|
- spec/features/javascripts/foo.js.coffee
|
171
171
|
- spec/rails_app/Gemfile
|
172
|
+
- spec/rails_app/Gemfile.lock
|
172
173
|
- spec/rails_app/README.rdoc
|
173
174
|
- spec/rails_app/Rakefile
|
174
175
|
- spec/rails_app/app/assets/javascripts/application.js
|
@@ -258,9 +259,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
258
259
|
version: '0'
|
259
260
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
260
261
|
requirements:
|
261
|
-
- - "
|
262
|
+
- - ">"
|
262
263
|
- !ruby/object:Gem::Version
|
263
|
-
version:
|
264
|
+
version: 1.3.1
|
264
265
|
requirements: []
|
265
266
|
rubyforge_project:
|
266
267
|
rubygems_version: 2.4.5
|
@@ -271,6 +272,7 @@ test_files:
|
|
271
272
|
- spec/features/foo_spec.rb
|
272
273
|
- spec/features/javascripts/foo.js.coffee
|
273
274
|
- spec/rails_app/Gemfile
|
275
|
+
- spec/rails_app/Gemfile.lock
|
274
276
|
- spec/rails_app/README.rdoc
|
275
277
|
- spec/rails_app/Rakefile
|
276
278
|
- spec/rails_app/app/assets/javascripts/application.js
|