netzke-testing 0.11.1 → 0.11.2
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 +8 -2
- data/lib/netzke/testing/helpers.rb +6 -12
- data/lib/netzke/testing/version.rb +1 -1
- data/spec/rails_app/log/development.log +113 -0
- data/spec/rails_app/log/test.log +432 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/3055607d4a01c24bb30f86d38b66be76 +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/4d2a90e455a595f51101e7e94572384e +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/5da2225b8b1ca6c070d06b98bbb94452 +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/7250cf6654022ff231aed2eaa0ce7b5f +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
- data/spec/rails_app/tmp/cache/assets/test/sprockets/b7732372d38c46ae99328022e1fd86c3 +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/e032da315be18f628acb87d4f469e052 +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/f3d58f13d1651ab6ed838874cbf4bfbe +0 -0
- metadata +2 -4
- data/spec/rails_app/Gemfile.lock +0 -171
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 26e0a54f2d983c99fd6ebbfcff1062789568618d
|
4
|
+
data.tar.gz: 104f34ea6d5802c50e3386652b83f190e0f6965d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 341367cb16da310f758e5a20fa14913513f389a2867d47451c08442b76c3b46825ac953b90c9a8794f73df1424776034595eef017c921894d9af0d00adedcd7b
|
7
|
+
data.tar.gz: a1016fe6f0bf3cc0c69a9c50118c5b127ee6a8d958533ce11f4556f72180d6deb1ac7009ab59e2ee27dd9f7a21df0484bb1d6297e54a3b8405c463d1774eb4df
|
data/README.md
CHANGED
@@ -105,17 +105,23 @@ 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:
|
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
|
+
|
112
118
|
## Requirements
|
113
119
|
|
114
120
|
* Ruby >= 2.0.0
|
115
121
|
* Rails >= 4.2.0
|
116
122
|
|
117
123
|
---
|
118
|
-
Copyright (c) 2015 [Max Gorin](https://twitter.com/
|
124
|
+
Copyright (c) 2015 [Max Gorin](https://twitter.com/mxgrn), released under the MIT license (see LICENSE).
|
119
125
|
|
120
126
|
**Note** that Ext JS is licensed [differently](http://www.sencha.com/products/extjs/license/), and you may need to
|
121
127
|
purchase a commercial license in order to use it in your projects!
|
@@ -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(options[:stop_on_error])
|
12
12
|
|
13
|
-
assert_mocha_results
|
13
|
+
assert_mocha_results(options[:stop_on_error])
|
14
14
|
end
|
15
15
|
|
16
|
-
def wait_for_javascript
|
16
|
+
def wait_for_javascript(stop_on_error = false)
|
17
17
|
start = Time.now
|
18
18
|
loop do
|
19
19
|
page.execute_script("return Netzke.mochaDone;") ? break : sleep(0.1)
|
@@ -23,14 +23,11 @@ module Netzke::Testing::Helpers
|
|
23
23
|
end
|
24
24
|
|
25
25
|
rescue Selenium::WebDriver::Error::JavascriptError => e
|
26
|
-
|
27
|
-
# (TODO: make configurable)
|
28
|
-
sleep 5
|
29
|
-
|
26
|
+
sleep 1.year if stop_on_error
|
30
27
|
raise e
|
31
28
|
end
|
32
29
|
|
33
|
-
def assert_mocha_results
|
30
|
+
def assert_mocha_results(stop_on_error = false)
|
34
31
|
result = page.execute_script(<<-JS)
|
35
32
|
var runner = Netzke.mochaRunner;
|
36
33
|
return {
|
@@ -41,10 +38,7 @@ module Netzke::Testing::Helpers
|
|
41
38
|
JS
|
42
39
|
|
43
40
|
if !result["success"]
|
44
|
-
|
45
|
-
# (TODO: make configurable)
|
46
|
-
sleep 5
|
47
|
-
|
41
|
+
sleep 1.year if stop_on_error
|
48
42
|
raise "Test failed: #{result["test"]}\n#{result["error"]}"
|
49
43
|
end
|
50
44
|
end
|
@@ -516,3 +516,116 @@ Started GET "/netzke/ext.js" for 127.0.0.1 at 2015-02-03 20:27:22 +0700
|
|
516
516
|
Processing by NetzkeController#ext as JS
|
517
517
|
Rendered text template (0.0ms)
|
518
518
|
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
519
|
+
|
520
|
+
|
521
|
+
Started GET "/" for 127.0.0.1 at 2015-03-08 15:36:17 +0700
|
522
|
+
Processing by Rails::WelcomeController#index as HTML
|
523
|
+
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)
|
524
|
+
Completed 200 OK in 19ms (Views: 11.6ms | ActiveRecord: 0.0ms)
|
525
|
+
|
526
|
+
|
527
|
+
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-03-08 15:36:24 +0700
|
528
|
+
Processing by Netzke::TestingController#components as HTML
|
529
|
+
Parameters: {"class"=>"Foo"}
|
530
|
+
Rendered inline template within layouts/netzke/testing (9.0ms)
|
531
|
+
Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms)
|
532
|
+
|
533
|
+
|
534
|
+
Started GET "/netzke/ext.css" for 127.0.0.1 at 2015-03-08 15:36:24 +0700
|
535
|
+
Processing by NetzkeController#ext as CSS
|
536
|
+
Rendered text template (0.0ms)
|
537
|
+
Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
538
|
+
|
539
|
+
|
540
|
+
Started GET "/netzke/ext.js" for 127.0.0.1 at 2015-03-08 15:36:24 +0700
|
541
|
+
Processing by NetzkeController#ext as JS
|
542
|
+
Rendered text template (0.1ms)
|
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
@@ -429,3 +429,435 @@ Processing by Netzke::TestingController#specs as JS
|
|
429
429
|
Parameters: {"name"=>"foo"}
|
430
430
|
Rendered text template (0.0ms)
|
431
431
|
Completed 200 OK in 447ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
432
|
+
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-03-08 15:44:55 +0700
|
433
|
+
Processing by Netzke::TestingController#components as HTML
|
434
|
+
Parameters: {"class"=>"Foo"}
|
435
|
+
Rendered inline template within layouts/netzke/testing (4.1ms)
|
436
|
+
Completed 200 OK in 20ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
437
|
+
Started GET "/netzke/components/Foo?no-helpers=true&spec=true" for 127.0.0.1 at 2015-03-08 15:44:56 +0700
|
438
|
+
Processing by Netzke::TestingController#components as HTML
|
439
|
+
Parameters: {"no-helpers"=>"true", "spec"=>"true", "class"=>"Foo"}
|
440
|
+
Rendered inline template within layouts/netzke/testing (1.3ms)
|
441
|
+
Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
|
442
|
+
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-03-08 15:44:56 +0700
|
443
|
+
Processing by Netzke::TestingController#components as HTML
|
444
|
+
Parameters: {"class"=>"Foo"}
|
445
|
+
Rendered inline template within layouts/netzke/testing (1.7ms)
|
446
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
447
|
+
Started GET "/netzke/components/Foo?spec=true" for 127.0.0.1 at 2015-03-08 15:44:56 +0700
|
448
|
+
Processing by Netzke::TestingController#components as HTML
|
449
|
+
Parameters: {"spec"=>"true", "class"=>"Foo"}
|
450
|
+
Rendered inline template within layouts/netzke/testing (0.9ms)
|
451
|
+
Completed 200 OK in 343ms (Views: 342.6ms | ActiveRecord: 0.0ms)
|
452
|
+
Started GET "/netzke/components/Foo?spec=true" for 127.0.0.1 at 2015-03-08 15:44:56 +0700
|
453
|
+
Processing by Netzke::TestingController#components as HTML
|
454
|
+
Parameters: {"spec"=>"true", "class"=>"Foo"}
|
455
|
+
Rendered inline template within layouts/netzke/testing (1.3ms)
|
456
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
457
|
+
Started GET "/netzke/components/Foo?spec=true" for 127.0.0.1 at 2015-03-08 15:46:47 +0700
|
458
|
+
Processing by Netzke::TestingController#components as HTML
|
459
|
+
Parameters: {"spec"=>"true", "class"=>"Foo"}
|
460
|
+
Rendered inline template within layouts/netzke/testing (4.4ms)
|
461
|
+
Completed 200 OK in 31ms (Views: 23.7ms | ActiveRecord: 0.0ms)
|
462
|
+
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-03-08 15:46:47 +0700
|
463
|
+
Processing by Netzke::TestingController#components as HTML
|
464
|
+
Parameters: {"class"=>"Foo"}
|
465
|
+
Rendered inline template within layouts/netzke/testing (1.0ms)
|
466
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
467
|
+
Started GET "/netzke/components/Foo" for 127.0.0.1 at 2015-03-08 15:46:47 +0700
|
468
|
+
Processing by Netzke::TestingController#components as HTML
|
469
|
+
Parameters: {"class"=>"Foo"}
|
470
|
+
Rendered inline template within layouts/netzke/testing (1.1ms)
|
471
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
472
|
+
Started GET "/netzke/components/Foo?spec=true" for 127.0.0.1 at 2015-03-08 15:46:47 +0700
|
473
|
+
Processing by Netzke::TestingController#components as HTML
|
474
|
+
Parameters: {"spec"=>"true", "class"=>"Foo"}
|
475
|
+
Rendered inline template within layouts/netzke/testing (1.0ms)
|
476
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
477
|
+
Started GET "/netzke/components/Foo?no-helpers=true&spec=true" for 127.0.0.1 at 2015-03-08 15:46:47 +0700
|
478
|
+
Processing by Netzke::TestingController#components as HTML
|
479
|
+
Parameters: {"no-helpers"=>"true", "spec"=>"true", "class"=>"Foo"}
|
480
|
+
Rendered inline template within layouts/netzke/testing (1.4ms)
|
481
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
482
|
+
Started GET "/netzke/components/Foo?spec=foo" for 127.0.0.1 at 2015-03-08 15:46:49 +0700
|
483
|
+
Processing by Netzke::TestingController#components as HTML
|
484
|
+
Parameters: {"spec"=>"foo", "class"=>"Foo"}
|
485
|
+
Rendered inline template within layouts/netzke/testing (1.5ms)
|
486
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
487
|
+
Started GET "/assets/netzke/testing/expect/expect.js" for 127.0.0.1 at 2015-03-08 15:46:49 +0700
|
488
|
+
Started GET "/netzke/ext.js" for 127.0.0.1 at 2015-03-08 15:46:49 +0700
|
489
|
+
Processing by NetzkeController#ext as JS
|
490
|
+
Rendered text template (0.0ms)
|
491
|
+
Completed 200 OK in 12ms (Views: 8.6ms | ActiveRecord: 0.0ms)
|
492
|
+
Started GET "/netzke/ext.css" for 127.0.0.1 at 2015-03-08 15:46:49 +0700
|
493
|
+
Processing by NetzkeController#ext as CSS
|
494
|
+
Rendered text template (0.0ms)
|
495
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
496
|
+
Started GET "/assets/netzke/testing/mocha/mocha.js" for 127.0.0.1 at 2015-03-08 15:46:49 +0700
|
497
|
+
Started GET "/assets/netzke/testing/mocha/mocha.css" for 127.0.0.1 at 2015-03-08 15:46:49 +0700
|
498
|
+
Started GET "/assets/netzke/testing/helpers/actions.js" for 127.0.0.1 at 2015-03-08 15:46:49 +0700
|
499
|
+
Started GET "/assets/netzke/testing/helpers/queries.js" for 127.0.0.1 at 2015-03-08 15:46:49 +0700
|
500
|
+
Started GET "/assets/netzke/testing/helpers/expectations.js" for 127.0.0.1 at 2015-03-08 15:46:49 +0700
|
501
|
+
Started GET "/assets/netzke/testing/helpers/form.js" for 127.0.0.1 at 2015-03-08 15:46:49 +0700
|
502
|
+
Started GET "/assets/netzke/testing/helpers/grid.js" for 127.0.0.1 at 2015-03-08 15:46:49 +0700
|
503
|
+
Started GET "/assets/custom.js" for 127.0.0.1 at 2015-03-08 15:46:49 +0700
|
504
|
+
Started GET "/netzke/specs/foo.js" for 127.0.0.1 at 2015-03-08 15:46:49 +0700
|
505
|
+
Processing by Netzke::TestingController#specs as JS
|
506
|
+
Parameters: {"name"=>"foo"}
|
507
|
+
Rendered text template (0.0ms)
|
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
|
Binary file
|
Binary file
|
Binary file
|
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.11.
|
4
|
+
version: 0.11.2
|
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-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -169,7 +169,6 @@ 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
|
173
172
|
- spec/rails_app/README.rdoc
|
174
173
|
- spec/rails_app/Rakefile
|
175
174
|
- spec/rails_app/app/assets/javascripts/application.js
|
@@ -272,7 +271,6 @@ test_files:
|
|
272
271
|
- spec/features/foo_spec.rb
|
273
272
|
- spec/features/javascripts/foo.js.coffee
|
274
273
|
- spec/rails_app/Gemfile
|
275
|
-
- spec/rails_app/Gemfile.lock
|
276
274
|
- spec/rails_app/README.rdoc
|
277
275
|
- spec/rails_app/Rakefile
|
278
276
|
- spec/rails_app/app/assets/javascripts/application.js
|
data/spec/rails_app/Gemfile.lock
DELETED
@@ -1,171 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ~/code/netzke/netzke-core
|
3
|
-
specs:
|
4
|
-
netzke-core (0.11.0)
|
5
|
-
execjs
|
6
|
-
uglifier
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
actionmailer (4.2.0)
|
12
|
-
actionpack (= 4.2.0)
|
13
|
-
actionview (= 4.2.0)
|
14
|
-
activejob (= 4.2.0)
|
15
|
-
mail (~> 2.5, >= 2.5.4)
|
16
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
17
|
-
actionpack (4.2.0)
|
18
|
-
actionview (= 4.2.0)
|
19
|
-
activesupport (= 4.2.0)
|
20
|
-
rack (~> 1.6.0)
|
21
|
-
rack-test (~> 0.6.2)
|
22
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
23
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.1)
|
24
|
-
actionview (4.2.0)
|
25
|
-
activesupport (= 4.2.0)
|
26
|
-
builder (~> 3.1)
|
27
|
-
erubis (~> 2.7.0)
|
28
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
29
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.1)
|
30
|
-
activejob (4.2.0)
|
31
|
-
activesupport (= 4.2.0)
|
32
|
-
globalid (>= 0.3.0)
|
33
|
-
activemodel (4.2.0)
|
34
|
-
activesupport (= 4.2.0)
|
35
|
-
builder (~> 3.1)
|
36
|
-
activerecord (4.2.0)
|
37
|
-
activemodel (= 4.2.0)
|
38
|
-
activesupport (= 4.2.0)
|
39
|
-
arel (~> 6.0)
|
40
|
-
activesupport (4.2.0)
|
41
|
-
i18n (~> 0.7)
|
42
|
-
json (~> 1.7, >= 1.7.7)
|
43
|
-
minitest (~> 5.1)
|
44
|
-
thread_safe (~> 0.3, >= 0.3.4)
|
45
|
-
tzinfo (~> 1.1)
|
46
|
-
arel (6.0.0)
|
47
|
-
binding_of_caller (0.7.2)
|
48
|
-
debug_inspector (>= 0.0.1)
|
49
|
-
builder (3.2.2)
|
50
|
-
byebug (3.5.1)
|
51
|
-
columnize (~> 0.8)
|
52
|
-
debugger-linecache (~> 1.2)
|
53
|
-
slop (~> 3.6)
|
54
|
-
coffee-rails (4.1.0)
|
55
|
-
coffee-script (>= 2.2.0)
|
56
|
-
railties (>= 4.0.0, < 5.0)
|
57
|
-
coffee-script (2.3.0)
|
58
|
-
coffee-script-source
|
59
|
-
execjs
|
60
|
-
coffee-script-source (1.9.0)
|
61
|
-
columnize (0.9.0)
|
62
|
-
debug_inspector (0.0.2)
|
63
|
-
debugger-linecache (1.2.0)
|
64
|
-
erubis (2.7.0)
|
65
|
-
execjs (2.2.2)
|
66
|
-
globalid (0.3.0)
|
67
|
-
activesupport (>= 4.1.0)
|
68
|
-
hike (1.2.3)
|
69
|
-
i18n (0.7.0)
|
70
|
-
jbuilder (2.2.6)
|
71
|
-
activesupport (>= 3.0.0, < 5)
|
72
|
-
multi_json (~> 1.2)
|
73
|
-
jquery-rails (4.0.3)
|
74
|
-
rails-dom-testing (~> 1.0)
|
75
|
-
railties (>= 4.2.0)
|
76
|
-
thor (>= 0.14, < 2.0)
|
77
|
-
json (1.8.2)
|
78
|
-
loofah (2.0.1)
|
79
|
-
nokogiri (>= 1.5.9)
|
80
|
-
mail (2.6.3)
|
81
|
-
mime-types (>= 1.16, < 3)
|
82
|
-
mime-types (2.4.3)
|
83
|
-
mini_portile (0.6.2)
|
84
|
-
minitest (5.5.1)
|
85
|
-
multi_json (1.10.1)
|
86
|
-
nokogiri (1.6.6.2)
|
87
|
-
mini_portile (~> 0.6.0)
|
88
|
-
rack (1.6.0)
|
89
|
-
rack-test (0.6.3)
|
90
|
-
rack (>= 1.0)
|
91
|
-
rails (4.2.0)
|
92
|
-
actionmailer (= 4.2.0)
|
93
|
-
actionpack (= 4.2.0)
|
94
|
-
actionview (= 4.2.0)
|
95
|
-
activejob (= 4.2.0)
|
96
|
-
activemodel (= 4.2.0)
|
97
|
-
activerecord (= 4.2.0)
|
98
|
-
activesupport (= 4.2.0)
|
99
|
-
bundler (>= 1.3.0, < 2.0)
|
100
|
-
railties (= 4.2.0)
|
101
|
-
sprockets-rails
|
102
|
-
rails-deprecated_sanitizer (1.0.3)
|
103
|
-
activesupport (>= 4.2.0.alpha)
|
104
|
-
rails-dom-testing (1.0.5)
|
105
|
-
activesupport (>= 4.2.0.beta, < 5.0)
|
106
|
-
nokogiri (~> 1.6.0)
|
107
|
-
rails-deprecated_sanitizer (>= 1.0.1)
|
108
|
-
rails-html-sanitizer (1.0.1)
|
109
|
-
loofah (~> 2.0)
|
110
|
-
railties (4.2.0)
|
111
|
-
actionpack (= 4.2.0)
|
112
|
-
activesupport (= 4.2.0)
|
113
|
-
rake (>= 0.8.7)
|
114
|
-
thor (>= 0.18.1, < 2.0)
|
115
|
-
rake (10.4.2)
|
116
|
-
rdoc (4.2.0)
|
117
|
-
sass (3.4.11)
|
118
|
-
sass-rails (5.0.1)
|
119
|
-
railties (>= 4.0.0, < 5.0)
|
120
|
-
sass (~> 3.1)
|
121
|
-
sprockets (>= 2.8, < 4.0)
|
122
|
-
sprockets-rails (>= 2.0, < 4.0)
|
123
|
-
tilt (~> 1.1)
|
124
|
-
sdoc (0.4.1)
|
125
|
-
json (~> 1.7, >= 1.7.7)
|
126
|
-
rdoc (~> 4.0)
|
127
|
-
slop (3.6.0)
|
128
|
-
spring (1.2.0)
|
129
|
-
sprockets (2.12.3)
|
130
|
-
hike (~> 1.2)
|
131
|
-
multi_json (~> 1.0)
|
132
|
-
rack (~> 1.0)
|
133
|
-
tilt (~> 1.1, != 1.3.0)
|
134
|
-
sprockets-rails (2.2.4)
|
135
|
-
actionpack (>= 3.0)
|
136
|
-
activesupport (>= 3.0)
|
137
|
-
sprockets (>= 2.8, < 4.0)
|
138
|
-
sqlite3 (1.3.10)
|
139
|
-
thor (0.19.1)
|
140
|
-
thread_safe (0.3.4)
|
141
|
-
tilt (1.4.1)
|
142
|
-
turbolinks (2.5.3)
|
143
|
-
coffee-rails
|
144
|
-
tzinfo (1.2.2)
|
145
|
-
thread_safe (~> 0.1)
|
146
|
-
uglifier (2.7.0)
|
147
|
-
execjs (>= 0.3.0)
|
148
|
-
json (>= 1.8.0)
|
149
|
-
web-console (2.0.0)
|
150
|
-
activemodel (~> 4.0)
|
151
|
-
binding_of_caller (>= 0.7.2)
|
152
|
-
railties (~> 4.0)
|
153
|
-
sprockets-rails (>= 2.0, < 4.0)
|
154
|
-
|
155
|
-
PLATFORMS
|
156
|
-
ruby
|
157
|
-
|
158
|
-
DEPENDENCIES
|
159
|
-
byebug
|
160
|
-
coffee-rails (~> 4.1.0)
|
161
|
-
jbuilder (~> 2.0)
|
162
|
-
jquery-rails
|
163
|
-
netzke-core!
|
164
|
-
rails (= 4.2.0)
|
165
|
-
sass-rails (~> 5.0)
|
166
|
-
sdoc (~> 0.4.0)
|
167
|
-
spring
|
168
|
-
sqlite3
|
169
|
-
turbolinks
|
170
|
-
uglifier (>= 1.3.0)
|
171
|
-
web-console (~> 2.0)
|