erector 0.9.0 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +2 -1
- data/README.txt +1 -1
- data/Rakefile +30 -18
- data/VERSION.yml +1 -1
- data/lib/erector/abstract_widget.rb +10 -0
- data/lib/erector/html_widget.rb +20 -20
- data/lib/erector/needs.rb +10 -2
- data/lib/erector/promise.rb +4 -0
- data/lib/erector/rails3.rb +10 -0
- data/lib/erector/sass.rb +5 -1
- data/lib/erector/widgets/table.rb +5 -12
- data/spec/erect/erect_rails_spec.rb +3 -3
- data/spec/erector/convenience_spec.rb +1 -1
- data/spec/erector/hello_from_readme_spec.rb +2 -2
- data/spec/erector/html_spec.rb +35 -1
- data/spec/erector/indentation_spec.rb +1 -1
- data/spec/erector/needs_spec.rb +10 -1
- data/spec/erector/sass_spec.rb +36 -12
- data/spec/rails2/rails_app/log/test.log +1134 -0
- data/spec/rails_root/app/views/layouts/erb_as_layout.html.erb +2 -0
- data/spec/rails_root/app/views/layouts/widget_as_layout.rb +2 -2
- data/spec/rails_root/app/views/test/render_default_erb_with_layout.html.erb +1 -0
- data/spec/rails_root/app/views/test/render_default_widget_with_layout.html.rb +5 -0
- data/spec/rails_root/config/environments/test.rb +1 -1
- data/spec/rails_root/log/test.log +1164 -0
- data/spec/rails_root/spec/rails_helpers_spec.rb +23 -15
- data/spec/rails_root/spec/rails_widget_spec.rb +3 -3
- data/spec/rails_root/spec/render_spec.rb +90 -47
- metadata +58 -69
- data/spec/rails_root/app/views/layouts/application.html.erb +0 -14
@@ -1,8 +1,8 @@
|
|
1
1
|
class Views::Layouts::WidgetAsLayout < Erector::Widget
|
2
2
|
def content
|
3
|
-
|
3
|
+
content_for(:top) if content_for?(:top)
|
4
4
|
text @before || "BEFORE"
|
5
|
-
|
5
|
+
content_for(:layout)
|
6
6
|
text @after || "AFTER"
|
7
7
|
end
|
8
8
|
end
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= @erb_content %>
|
@@ -23,7 +23,7 @@ RailsRoot::Application.configure do
|
|
23
23
|
# Tell Action Mailer not to deliver emails to the real world.
|
24
24
|
# The :test delivery method accumulates sent emails in the
|
25
25
|
# ActionMailer::Base.deliveries array.
|
26
|
-
config.action_mailer.delivery_method = :test
|
26
|
+
config.action_mailer.delivery_method = :test if defined?(ActionMailer)
|
27
27
|
|
28
28
|
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
29
29
|
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
@@ -3575,3 +3575,1167 @@ Completed 200 OK in 1ms (Views: 0.9ms)
|
|
3575
3575
|
Processing by TestController#render_with_widget_as_layout_using_content_for as HTML
|
3576
3576
|
Rendered test/render_with_widget_as_layout_using_content_for.rb within layouts/widget_as_layout (1.5ms)
|
3577
3577
|
Completed 200 OK in 7ms (Views: 6.5ms)
|
3578
|
+
Rendered text template (0.0ms)
|
3579
|
+
Processing by TestController#render_widget_class as HTML
|
3580
|
+
Connecting to database specified by database.yml
|
3581
|
+
Completed 200 OK in 289ms (Views: 1.7ms)
|
3582
|
+
Processing by TestController#render_widget_instance as HTML
|
3583
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
3584
|
+
Processing by TestController#render_widget_with_ignored_controller_variables as HTML
|
3585
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
3586
|
+
Processing by TestController#render_widget_with_extra_controller_variables as HTML
|
3587
|
+
Completed 500 Internal Server Error in 1ms
|
3588
|
+
Processing by TestController#render_with_content_method as HTML
|
3589
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
3590
|
+
Processing by TestController#render_with_rails_options as HTML
|
3591
|
+
Completed 500 Internal Server Error in 0ms (Views: 0.2ms)
|
3592
|
+
Processing by TestController#render_template_with_implicit_assigns as HTML
|
3593
|
+
Rendered test/implicit_assigns.html.rb (0.8ms)
|
3594
|
+
Completed 200 OK in 2ms (Views: 2.1ms)
|
3595
|
+
Processing by TestController#render_template_with_protected_instance_variable as HTML
|
3596
|
+
Rendered test/protected_instance_variable.html.rb (0.9ms)
|
3597
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
3598
|
+
Processing by TestController#render_bare_rb as HTML
|
3599
|
+
Rendered test/bare.rb (1.0ms)
|
3600
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
3601
|
+
Processing by TestController#render_template_with_excess_variables as HTML
|
3602
|
+
Rendered test/render_default.html.rb (0.7ms)
|
3603
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
3604
|
+
Processing by TestController#render_needs_template_with_excess_variables as HTML
|
3605
|
+
Rendered test/needs.html.rb (1.2ms)
|
3606
|
+
Completed 500 Internal Server Error in 2ms
|
3607
|
+
Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
|
3608
|
+
Rendered test/needs.html.rb (0.1ms)
|
3609
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
3610
|
+
Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
|
3611
|
+
Rendered test/needs_subclass.html.rb (0.9ms)
|
3612
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
3613
|
+
Processing by TestController#render_template_with_partial as HTML
|
3614
|
+
Rendered test/_erector.rb (1.2ms)
|
3615
|
+
Rendered test/render_partial.html.rb (5.2ms)
|
3616
|
+
Completed 200 OK in 6ms (Views: 6.3ms)
|
3617
|
+
Processing by TestController#render_erb_from_erector as HTML
|
3618
|
+
Rendered test/_erb.erb (0.4ms)
|
3619
|
+
Rendered test/erb_from_erector.html.rb (2.5ms)
|
3620
|
+
Completed 200 OK in 4ms (Views: 3.5ms)
|
3621
|
+
Processing by TestController#render_erector_from_erb as HTML
|
3622
|
+
Rendered test/_erector.rb (0.2ms)
|
3623
|
+
Rendered test/erector_from_erb.html.erb (0.9ms)
|
3624
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
3625
|
+
Processing by TestController#render_erector_with_locals_from_erb as HTML
|
3626
|
+
Rendered test/_partial_with_locals.rb (1.3ms)
|
3627
|
+
Rendered test/erector_with_locals_from_erb.html.erb (2.3ms)
|
3628
|
+
Completed 200 OK in 4ms (Views: 3.2ms)
|
3629
|
+
Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
|
3630
|
+
Rendered test/_partial_with_locals.rb (0.6ms)
|
3631
|
+
Rendered test/erector_with_locals_from_erb.html.erb (1.2ms)
|
3632
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
3633
|
+
Processing by TestController#render_erector_with_locals_from_erb_override as HTML
|
3634
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
3635
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
|
3636
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
3637
|
+
Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
|
3638
|
+
Rendered test/_partial_with_locals.rb (1.1ms)
|
3639
|
+
Rendered test/erector_with_locals_from_erb.html.erb (1.8ms)
|
3640
|
+
Completed 500 Internal Server Error in 2ms
|
3641
|
+
Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
|
3642
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
3643
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
|
3644
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
3645
|
+
Processing by TestController#render_erector_partial_without_controller_variables as HTML
|
3646
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
3647
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
|
3648
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
3649
|
+
Processing by TestController#render_default as HTML
|
3650
|
+
Rendered test/render_default.html.rb (0.4ms)
|
3651
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
3652
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
3653
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/erb_as_layout (0.3ms)
|
3654
|
+
Completed 200 OK in 2ms (Views: 2.1ms)
|
3655
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
3656
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/erb_as_layout (0.9ms)
|
3657
|
+
Completed 200 OK in 2ms (Views: 2.2ms)
|
3658
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
3659
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/widget_as_layout (0.0ms)
|
3660
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
3661
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
3662
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/widget_as_layout (0.1ms)
|
3663
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
3664
|
+
Processing by TestController#render_with_needs as HTML
|
3665
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
3666
|
+
Processing by TestController#render_with_widget_as_layout as HTML
|
3667
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (1.1ms)
|
3668
|
+
Completed 200 OK in 2ms (Views: 2.1ms)
|
3669
|
+
Processing by TestController#render_with_widget_as_layout_and_vars as HTML
|
3670
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (0.1ms)
|
3671
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
3672
|
+
Processing by TestController#render_with_widget_as_layout_using_content_for as HTML
|
3673
|
+
Rendered test/render_with_widget_as_layout_using_content_for.rb within layouts/widget_as_layout (1.2ms)
|
3674
|
+
Completed 200 OK in 2ms (Views: 2.3ms)
|
3675
|
+
Rendered text template (0.0ms)
|
3676
|
+
Processing by TestController#render_widget_class as HTML
|
3677
|
+
Connecting to database specified by database.yml
|
3678
|
+
Completed 200 OK in 284ms (Views: 1.7ms)
|
3679
|
+
Processing by TestController#render_widget_instance as HTML
|
3680
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
3681
|
+
Processing by TestController#render_widget_with_ignored_controller_variables as HTML
|
3682
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
3683
|
+
Processing by TestController#render_widget_with_extra_controller_variables as HTML
|
3684
|
+
Completed 500 Internal Server Error in 1ms
|
3685
|
+
Processing by TestController#render_with_content_method as HTML
|
3686
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
3687
|
+
Processing by TestController#render_with_rails_options as HTML
|
3688
|
+
Completed 500 Internal Server Error in 0ms (Views: 0.3ms)
|
3689
|
+
Processing by TestController#render_template_with_implicit_assigns as HTML
|
3690
|
+
Rendered test/implicit_assigns.html.rb (0.8ms)
|
3691
|
+
Completed 200 OK in 2ms (Views: 2.1ms)
|
3692
|
+
Processing by TestController#render_template_with_protected_instance_variable as HTML
|
3693
|
+
Rendered test/protected_instance_variable.html.rb (0.8ms)
|
3694
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
3695
|
+
Processing by TestController#render_bare_rb as HTML
|
3696
|
+
Rendered test/bare.rb (1.0ms)
|
3697
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
3698
|
+
Processing by TestController#render_template_with_excess_variables as HTML
|
3699
|
+
Rendered test/render_default.html.rb (0.7ms)
|
3700
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
3701
|
+
Processing by TestController#render_needs_template_with_excess_variables as HTML
|
3702
|
+
Rendered test/needs.html.rb (1.2ms)
|
3703
|
+
Completed 500 Internal Server Error in 2ms
|
3704
|
+
Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
|
3705
|
+
Rendered test/needs.html.rb (0.2ms)
|
3706
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
3707
|
+
Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
|
3708
|
+
Rendered test/needs_subclass.html.rb (1.5ms)
|
3709
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
3710
|
+
Processing by TestController#render_template_with_partial as HTML
|
3711
|
+
Rendered test/_erector.rb (1.1ms)
|
3712
|
+
Rendered test/render_partial.html.rb (5.5ms)
|
3713
|
+
Completed 200 OK in 7ms (Views: 6.4ms)
|
3714
|
+
Processing by TestController#render_erb_from_erector as HTML
|
3715
|
+
Rendered test/_erb.erb (0.4ms)
|
3716
|
+
Rendered test/erb_from_erector.html.rb (2.1ms)
|
3717
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
3718
|
+
Processing by TestController#render_erector_from_erb as HTML
|
3719
|
+
Rendered test/_erector.rb (0.3ms)
|
3720
|
+
Rendered test/erector_from_erb.html.erb (1.2ms)
|
3721
|
+
Completed 200 OK in 2ms (Views: 2.2ms)
|
3722
|
+
Processing by TestController#render_erector_with_locals_from_erb as HTML
|
3723
|
+
Rendered test/_partial_with_locals.rb (1.4ms)
|
3724
|
+
Rendered test/erector_with_locals_from_erb.html.erb (3.0ms)
|
3725
|
+
Completed 200 OK in 5ms (Views: 4.4ms)
|
3726
|
+
Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
|
3727
|
+
Rendered test/_partial_with_locals.rb (0.8ms)
|
3728
|
+
Rendered test/erector_with_locals_from_erb.html.erb (1.8ms)
|
3729
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
3730
|
+
Processing by TestController#render_erector_with_locals_from_erb_override as HTML
|
3731
|
+
Rendered test/_partial_with_locals.rb (0.3ms)
|
3732
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.6ms)
|
3733
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
3734
|
+
Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
|
3735
|
+
Rendered test/_partial_with_locals.rb (1.2ms)
|
3736
|
+
Rendered test/erector_with_locals_from_erb.html.erb (2.0ms)
|
3737
|
+
Completed 500 Internal Server Error in 3ms
|
3738
|
+
Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
|
3739
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
3740
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
|
3741
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
3742
|
+
Processing by TestController#render_erector_partial_without_controller_variables as HTML
|
3743
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
3744
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
|
3745
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
3746
|
+
Processing by TestController#render_default as HTML
|
3747
|
+
Rendered test/render_default.html.rb (0.6ms)
|
3748
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
3749
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
3750
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/erb_as_layout (0.6ms)
|
3751
|
+
Completed 200 OK in 4ms (Views: 3.6ms)
|
3752
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
3753
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/erb_as_layout (0.9ms)
|
3754
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
3755
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
3756
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/widget_as_layout (0.0ms)
|
3757
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
3758
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
3759
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/widget_as_layout (0.2ms)
|
3760
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
3761
|
+
Processing by TestController#render_with_needs as HTML
|
3762
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
3763
|
+
Processing by TestController#render_with_widget_as_layout as HTML
|
3764
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (1.1ms)
|
3765
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
3766
|
+
Processing by TestController#render_with_widget_as_layout_and_vars as HTML
|
3767
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (0.2ms)
|
3768
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
3769
|
+
Processing by TestController#render_with_widget_as_layout_using_content_for as HTML
|
3770
|
+
Rendered test/render_with_widget_as_layout_using_content_for.rb within layouts/widget_as_layout (1.7ms)
|
3771
|
+
Completed 200 OK in 3ms (Views: 3.2ms)
|
3772
|
+
Rendered text template (0.0ms)
|
3773
|
+
Processing by TestController#render_widget_class as HTML
|
3774
|
+
Connecting to database specified by database.yml
|
3775
|
+
Completed 200 OK in 682ms (Views: 3.9ms)
|
3776
|
+
Processing by TestController#render_widget_instance as HTML
|
3777
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
3778
|
+
Processing by TestController#render_widget_with_ignored_controller_variables as HTML
|
3779
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
3780
|
+
Processing by TestController#render_widget_with_extra_controller_variables as HTML
|
3781
|
+
Completed 500 Internal Server Error in 1ms
|
3782
|
+
Processing by TestController#render_with_content_method as HTML
|
3783
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
3784
|
+
Processing by TestController#render_with_rails_options as HTML
|
3785
|
+
Completed 500 Internal Server Error in 1ms (Views: 0.5ms)
|
3786
|
+
Processing by TestController#render_template_with_implicit_assigns as HTML
|
3787
|
+
Rendered test/implicit_assigns.html.rb (2.1ms)
|
3788
|
+
Completed 200 OK in 5ms (Views: 4.9ms)
|
3789
|
+
Processing by TestController#render_template_with_protected_instance_variable as HTML
|
3790
|
+
Rendered test/protected_instance_variable.html.rb (2.0ms)
|
3791
|
+
Completed 200 OK in 4ms (Views: 3.7ms)
|
3792
|
+
Processing by TestController#render_bare_rb as HTML
|
3793
|
+
Rendered test/bare.rb (2.4ms)
|
3794
|
+
Completed 200 OK in 4ms (Views: 4.0ms)
|
3795
|
+
Processing by TestController#render_template_with_excess_variables as HTML
|
3796
|
+
Rendered test/render_default.html.rb (1.9ms)
|
3797
|
+
Completed 200 OK in 4ms (Views: 3.6ms)
|
3798
|
+
Processing by TestController#render_needs_template_with_excess_variables as HTML
|
3799
|
+
Rendered test/needs.html.rb (2.6ms)
|
3800
|
+
Completed 500 Internal Server Error in 5ms
|
3801
|
+
Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
|
3802
|
+
Rendered test/needs.html.rb (0.3ms)
|
3803
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
3804
|
+
Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
|
3805
|
+
Rendered test/needs_subclass.html.rb (2.3ms)
|
3806
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
3807
|
+
Processing by TestController#render_template_with_partial as HTML
|
3808
|
+
Rendered test/_erector.rb (2.7ms)
|
3809
|
+
Rendered test/render_partial.html.rb (67.4ms)
|
3810
|
+
Completed 200 OK in 69ms (Views: 68.8ms)
|
3811
|
+
Processing by TestController#render_erb_from_erector as HTML
|
3812
|
+
Rendered test/_erb.erb (0.7ms)
|
3813
|
+
Rendered test/erb_from_erector.html.rb (3.8ms)
|
3814
|
+
Completed 200 OK in 6ms (Views: 5.3ms)
|
3815
|
+
Processing by TestController#render_erector_from_erb as HTML
|
3816
|
+
Rendered test/_erector.rb (0.4ms)
|
3817
|
+
Rendered test/erector_from_erb.html.erb (1.5ms)
|
3818
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
3819
|
+
Processing by TestController#render_erector_with_locals_from_erb as HTML
|
3820
|
+
Rendered test/_partial_with_locals.rb (2.6ms)
|
3821
|
+
Rendered test/erector_with_locals_from_erb.html.erb (4.6ms)
|
3822
|
+
Completed 200 OK in 7ms (Views: 6.2ms)
|
3823
|
+
Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
|
3824
|
+
Rendered test/_partial_with_locals.rb (1.0ms)
|
3825
|
+
Rendered test/erector_with_locals_from_erb.html.erb (2.3ms)
|
3826
|
+
Completed 200 OK in 3ms (Views: 3.1ms)
|
3827
|
+
Processing by TestController#render_erector_with_locals_from_erb_override as HTML
|
3828
|
+
Rendered test/_partial_with_locals.rb (0.4ms)
|
3829
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
|
3830
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
3831
|
+
Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
|
3832
|
+
Rendered test/_partial_with_locals.rb (2.0ms)
|
3833
|
+
Rendered test/erector_with_locals_from_erb.html.erb (3.4ms)
|
3834
|
+
Completed 500 Internal Server Error in 5ms
|
3835
|
+
Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
|
3836
|
+
Rendered test/_partial_with_locals.rb (0.4ms)
|
3837
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
|
3838
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
3839
|
+
Processing by TestController#render_erector_partial_without_controller_variables as HTML
|
3840
|
+
Rendered test/_partial_with_locals.rb (0.4ms)
|
3841
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
|
3842
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
3843
|
+
Processing by TestController#render_default as HTML
|
3844
|
+
Rendered test/render_default.html.rb (0.9ms)
|
3845
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
3846
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
3847
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/erb_as_layout (0.7ms)
|
3848
|
+
Completed 200 OK in 4ms (Views: 3.9ms)
|
3849
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
3850
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/erb_as_layout (1.9ms)
|
3851
|
+
Completed 200 OK in 4ms (Views: 4.0ms)
|
3852
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
3853
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/widget_as_layout (0.1ms)
|
3854
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
3855
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
3856
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/widget_as_layout (0.3ms)
|
3857
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
3858
|
+
Processing by TestController#render_with_needs as HTML
|
3859
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
3860
|
+
Processing by TestController#render_with_widget_as_layout as HTML
|
3861
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (2.4ms)
|
3862
|
+
Completed 200 OK in 5ms (Views: 4.5ms)
|
3863
|
+
Processing by TestController#render_with_widget_as_layout_and_vars as HTML
|
3864
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (0.3ms)
|
3865
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
3866
|
+
Processing by TestController#render_with_widget_as_layout_using_content_for as HTML
|
3867
|
+
Rendered test/render_with_widget_as_layout_using_content_for.rb within layouts/widget_as_layout (2.8ms)
|
3868
|
+
Completed 200 OK in 5ms (Views: 4.9ms)
|
3869
|
+
Rendered text template (0.0ms)
|
3870
|
+
Processing by TestController#render_widget_class as HTML
|
3871
|
+
Connecting to database specified by database.yml
|
3872
|
+
Completed 200 OK in 761ms (Views: 4.4ms)
|
3873
|
+
Processing by TestController#render_widget_instance as HTML
|
3874
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
3875
|
+
Processing by TestController#render_widget_with_ignored_controller_variables as HTML
|
3876
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
3877
|
+
Processing by TestController#render_widget_with_extra_controller_variables as HTML
|
3878
|
+
Completed 500 Internal Server Error in 1ms
|
3879
|
+
Processing by TestController#render_with_content_method as HTML
|
3880
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
3881
|
+
Processing by TestController#render_with_rails_options as HTML
|
3882
|
+
Completed 500 Internal Server Error in 1ms (Views: 0.6ms)
|
3883
|
+
Processing by TestController#render_template_with_implicit_assigns as HTML
|
3884
|
+
Rendered test/implicit_assigns.html.rb (2.1ms)
|
3885
|
+
Completed 200 OK in 5ms (Views: 4.8ms)
|
3886
|
+
Processing by TestController#render_template_with_protected_instance_variable as HTML
|
3887
|
+
Rendered test/protected_instance_variable.html.rb (2.0ms)
|
3888
|
+
Completed 200 OK in 4ms (Views: 3.6ms)
|
3889
|
+
Processing by TestController#render_bare_rb as HTML
|
3890
|
+
Rendered test/bare.rb (2.6ms)
|
3891
|
+
Completed 200 OK in 5ms (Views: 4.1ms)
|
3892
|
+
Processing by TestController#render_template_with_excess_variables as HTML
|
3893
|
+
Rendered test/render_default.html.rb (2.2ms)
|
3894
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
3895
|
+
Processing by TestController#render_needs_template_with_excess_variables as HTML
|
3896
|
+
Rendered test/needs.html.rb (2.8ms)
|
3897
|
+
Completed 500 Internal Server Error in 5ms
|
3898
|
+
Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
|
3899
|
+
Rendered test/needs.html.rb (0.3ms)
|
3900
|
+
Completed 200 OK in 2ms (Views: 1.2ms)
|
3901
|
+
Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
|
3902
|
+
Rendered test/needs_subclass.html.rb (2.7ms)
|
3903
|
+
Completed 200 OK in 5ms (Views: 4.3ms)
|
3904
|
+
Processing by TestController#render_template_with_partial as HTML
|
3905
|
+
Rendered test/_erector.rb (3.0ms)
|
3906
|
+
Rendered test/render_partial.html.rb (67.3ms)
|
3907
|
+
Completed 200 OK in 69ms (Views: 68.9ms)
|
3908
|
+
Processing by TestController#render_erb_from_erector as HTML
|
3909
|
+
Rendered test/_erb.erb (0.8ms)
|
3910
|
+
Rendered test/erb_from_erector.html.rb (4.0ms)
|
3911
|
+
Completed 200 OK in 6ms (Views: 5.5ms)
|
3912
|
+
Processing by TestController#render_erector_from_erb as HTML
|
3913
|
+
Rendered test/_erector.rb (0.4ms)
|
3914
|
+
Rendered test/erector_from_erb.html.erb (1.6ms)
|
3915
|
+
Completed 200 OK in 3ms (Views: 3.0ms)
|
3916
|
+
Processing by TestController#render_erector_with_locals_from_erb as HTML
|
3917
|
+
Rendered test/_partial_with_locals.rb (2.8ms)
|
3918
|
+
Rendered test/erector_with_locals_from_erb.html.erb (4.9ms)
|
3919
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
3920
|
+
Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
|
3921
|
+
Rendered test/_partial_with_locals.rb (1.0ms)
|
3922
|
+
Rendered test/erector_with_locals_from_erb.html.erb (2.4ms)
|
3923
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
3924
|
+
Processing by TestController#render_erector_with_locals_from_erb_override as HTML
|
3925
|
+
Rendered test/_partial_with_locals.rb (0.4ms)
|
3926
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
|
3927
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
3928
|
+
Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
|
3929
|
+
Rendered test/_partial_with_locals.rb (2.2ms)
|
3930
|
+
Rendered test/erector_with_locals_from_erb.html.erb (3.6ms)
|
3931
|
+
Completed 500 Internal Server Error in 5ms
|
3932
|
+
Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
|
3933
|
+
Rendered test/_partial_with_locals.rb (0.4ms)
|
3934
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
|
3935
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
3936
|
+
Processing by TestController#render_erector_partial_without_controller_variables as HTML
|
3937
|
+
Rendered test/_partial_with_locals.rb (0.4ms)
|
3938
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
|
3939
|
+
Completed 200 OK in 3ms (Views: 1.9ms)
|
3940
|
+
Processing by TestController#render_default as HTML
|
3941
|
+
Rendered test/render_default.html.rb (0.9ms)
|
3942
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
3943
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
3944
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/erb_as_layout (0.7ms)
|
3945
|
+
Completed 200 OK in 4ms (Views: 3.9ms)
|
3946
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
3947
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/erb_as_layout (2.2ms)
|
3948
|
+
Completed 200 OK in 5ms (Views: 4.6ms)
|
3949
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
3950
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/widget_as_layout (0.1ms)
|
3951
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
3952
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
3953
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/widget_as_layout (0.3ms)
|
3954
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
3955
|
+
Processing by TestController#render_with_needs as HTML
|
3956
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
3957
|
+
Processing by TestController#render_with_widget_as_layout as HTML
|
3958
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (2.6ms)
|
3959
|
+
Completed 200 OK in 5ms (Views: 4.8ms)
|
3960
|
+
Processing by TestController#render_with_widget_as_layout_and_vars as HTML
|
3961
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (0.3ms)
|
3962
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
3963
|
+
Processing by TestController#render_with_widget_as_layout_using_content_for as HTML
|
3964
|
+
Rendered test/render_with_widget_as_layout_using_content_for.rb within layouts/widget_as_layout (2.9ms)
|
3965
|
+
Completed 200 OK in 5ms (Views: 5.0ms)
|
3966
|
+
Rendered text template (0.0ms)
|
3967
|
+
Processing by TestController#render_widget_class as HTML
|
3968
|
+
Connecting to database specified by database.yml
|
3969
|
+
Completed 200 OK in 303ms (Views: 1.7ms)
|
3970
|
+
Processing by TestController#render_widget_instance as HTML
|
3971
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3972
|
+
Processing by TestController#render_widget_with_ignored_controller_variables as HTML
|
3973
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
3974
|
+
Processing by TestController#render_widget_with_extra_controller_variables as HTML
|
3975
|
+
Completed 500 Internal Server Error in 1ms
|
3976
|
+
Processing by TestController#render_with_content_method as HTML
|
3977
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
3978
|
+
Processing by TestController#render_with_rails_options as HTML
|
3979
|
+
Completed 500 Internal Server Error in 0ms (Views: 0.3ms)
|
3980
|
+
Processing by TestController#render_template_with_implicit_assigns as HTML
|
3981
|
+
Rendered test/implicit_assigns.html.rb (1.1ms)
|
3982
|
+
Completed 200 OK in 5ms (Views: 4.5ms)
|
3983
|
+
Processing by TestController#render_template_with_protected_instance_variable as HTML
|
3984
|
+
Rendered test/protected_instance_variable.html.rb (1.1ms)
|
3985
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
3986
|
+
Processing by TestController#render_bare_rb as HTML
|
3987
|
+
Rendered test/bare.rb (1.3ms)
|
3988
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
3989
|
+
Processing by TestController#render_template_with_excess_variables as HTML
|
3990
|
+
Rendered test/render_default.html.rb (1.0ms)
|
3991
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
3992
|
+
Processing by TestController#render_needs_template_with_excess_variables as HTML
|
3993
|
+
Rendered test/needs.html.rb (1.2ms)
|
3994
|
+
Completed 500 Internal Server Error in 2ms
|
3995
|
+
Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
|
3996
|
+
Rendered test/needs.html.rb (27.0ms)
|
3997
|
+
Completed 200 OK in 28ms (Views: 27.7ms)
|
3998
|
+
Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
|
3999
|
+
Rendered test/needs_subclass.html.rb (1.2ms)
|
4000
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
4001
|
+
Processing by TestController#render_template_with_partial as HTML
|
4002
|
+
Rendered test/_erector.rb (1.4ms)
|
4003
|
+
Rendered test/render_partial.html.rb (8.0ms)
|
4004
|
+
Completed 200 OK in 10ms (Views: 9.3ms)
|
4005
|
+
Processing by TestController#render_erb_from_erector as HTML
|
4006
|
+
Rendered test/_erb.erb (0.4ms)
|
4007
|
+
Rendered test/erb_from_erector.html.rb (2.5ms)
|
4008
|
+
Completed 200 OK in 4ms (Views: 3.9ms)
|
4009
|
+
Processing by TestController#render_erector_from_erb as HTML
|
4010
|
+
Rendered test/_erector.rb (0.2ms)
|
4011
|
+
Rendered test/erector_from_erb.html.erb (0.9ms)
|
4012
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
4013
|
+
Processing by TestController#render_erector_with_locals_from_erb as HTML
|
4014
|
+
Rendered test/_partial_with_locals.rb (1.4ms)
|
4015
|
+
Rendered test/erector_with_locals_from_erb.html.erb (3.0ms)
|
4016
|
+
Completed 200 OK in 5ms (Views: 4.3ms)
|
4017
|
+
Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
|
4018
|
+
Rendered test/_partial_with_locals.rb (0.5ms)
|
4019
|
+
Rendered test/erector_with_locals_from_erb.html.erb (1.3ms)
|
4020
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
4021
|
+
Processing by TestController#render_erector_with_locals_from_erb_override as HTML
|
4022
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4023
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
|
4024
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
4025
|
+
Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
|
4026
|
+
Rendered test/_partial_with_locals.rb (1.2ms)
|
4027
|
+
Rendered test/erector_with_locals_from_erb.html.erb (2.0ms)
|
4028
|
+
Completed 500 Internal Server Error in 3ms
|
4029
|
+
Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
|
4030
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4031
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
|
4032
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
4033
|
+
Processing by TestController#render_erector_partial_without_controller_variables as HTML
|
4034
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4035
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
|
4036
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
4037
|
+
Processing by TestController#render_default as HTML
|
4038
|
+
Rendered test/render_default.html.rb (0.4ms)
|
4039
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
4040
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
4041
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/erb_as_layout (0.4ms)
|
4042
|
+
Completed 200 OK in 3ms (Views: 3.1ms)
|
4043
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
4044
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/erb_as_layout (0.9ms)
|
4045
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
4046
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
4047
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/widget_as_layout (0.1ms)
|
4048
|
+
Completed 200 OK in 4ms (Views: 3.6ms)
|
4049
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
4050
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/widget_as_layout (0.1ms)
|
4051
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
4052
|
+
Processing by TestController#render_with_needs as HTML
|
4053
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4054
|
+
Processing by TestController#render_with_widget_as_layout as HTML
|
4055
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (1.3ms)
|
4056
|
+
Completed 200 OK in 3ms (Views: 3.1ms)
|
4057
|
+
Processing by TestController#render_with_widget_as_layout_and_vars as HTML
|
4058
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (0.2ms)
|
4059
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
4060
|
+
Processing by TestController#render_with_widget_as_layout_using_content_for as HTML
|
4061
|
+
Rendered test/render_with_widget_as_layout_using_content_for.rb within layouts/widget_as_layout (1.7ms)
|
4062
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
4063
|
+
Rendered text template (0.0ms)
|
4064
|
+
Processing by TestController#render_widget_class as HTML
|
4065
|
+
Connecting to database specified by database.yml
|
4066
|
+
Completed 200 OK in 307ms (Views: 1.8ms)
|
4067
|
+
Processing by TestController#render_widget_instance as HTML
|
4068
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
4069
|
+
Processing by TestController#render_widget_with_ignored_controller_variables as HTML
|
4070
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
4071
|
+
Processing by TestController#render_widget_with_extra_controller_variables as HTML
|
4072
|
+
Completed 500 Internal Server Error in 1ms
|
4073
|
+
Processing by TestController#render_with_content_method as HTML
|
4074
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4075
|
+
Processing by TestController#render_with_rails_options as HTML
|
4076
|
+
Completed 500 Internal Server Error in 0ms (Views: 0.3ms)
|
4077
|
+
Processing by TestController#render_template_with_implicit_assigns as HTML
|
4078
|
+
Rendered test/implicit_assigns.html.rb (0.9ms)
|
4079
|
+
Completed 200 OK in 2ms (Views: 2.3ms)
|
4080
|
+
Processing by TestController#render_template_with_protected_instance_variable as HTML
|
4081
|
+
Rendered test/protected_instance_variable.html.rb (1.0ms)
|
4082
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
4083
|
+
Processing by TestController#render_bare_rb as HTML
|
4084
|
+
Rendered test/bare.rb (1.3ms)
|
4085
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
4086
|
+
Processing by TestController#render_template_with_excess_variables as HTML
|
4087
|
+
Rendered test/render_default.html.rb (0.8ms)
|
4088
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
4089
|
+
Processing by TestController#render_needs_template_with_excess_variables as HTML
|
4090
|
+
Rendered test/needs.html.rb (1.3ms)
|
4091
|
+
Completed 500 Internal Server Error in 2ms
|
4092
|
+
Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
|
4093
|
+
Rendered test/needs.html.rb (0.1ms)
|
4094
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
4095
|
+
Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
|
4096
|
+
Rendered test/needs_subclass.html.rb (0.9ms)
|
4097
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
4098
|
+
Processing by TestController#render_template_with_partial as HTML
|
4099
|
+
Rendered test/_erector.rb (1.1ms)
|
4100
|
+
Rendered test/render_partial.html.rb (5.3ms)
|
4101
|
+
Completed 200 OK in 6ms (Views: 6.0ms)
|
4102
|
+
Processing by TestController#render_erb_from_erector as HTML
|
4103
|
+
Rendered test/_erb.erb (0.4ms)
|
4104
|
+
Rendered test/erb_from_erector.html.rb (1.9ms)
|
4105
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
4106
|
+
Processing by TestController#render_erector_from_erb as HTML
|
4107
|
+
Rendered test/_erector.rb (0.2ms)
|
4108
|
+
Rendered test/erector_from_erb.html.erb (0.7ms)
|
4109
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
4110
|
+
Processing by TestController#render_erector_with_locals_from_erb as HTML
|
4111
|
+
Rendered test/_partial_with_locals.rb (1.4ms)
|
4112
|
+
Rendered test/erector_with_locals_from_erb.html.erb (2.9ms)
|
4113
|
+
Completed 200 OK in 4ms (Views: 3.6ms)
|
4114
|
+
Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
|
4115
|
+
Rendered test/_partial_with_locals.rb (0.5ms)
|
4116
|
+
Rendered test/erector_with_locals_from_erb.html.erb (1.2ms)
|
4117
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
4118
|
+
Processing by TestController#render_erector_with_locals_from_erb_override as HTML
|
4119
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4120
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
|
4121
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
4122
|
+
Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
|
4123
|
+
Rendered test/_partial_with_locals.rb (1.1ms)
|
4124
|
+
Rendered test/erector_with_locals_from_erb.html.erb (1.8ms)
|
4125
|
+
Completed 500 Internal Server Error in 2ms
|
4126
|
+
Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
|
4127
|
+
Rendered test/_partial_with_locals.rb (0.3ms)
|
4128
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
|
4129
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
4130
|
+
Processing by TestController#render_erector_partial_without_controller_variables as HTML
|
4131
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4132
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
|
4133
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
4134
|
+
Processing by TestController#render_default as HTML
|
4135
|
+
Rendered test/render_default.html.rb (0.4ms)
|
4136
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
4137
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
4138
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/erb_as_layout (0.3ms)
|
4139
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
4140
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
4141
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/erb_as_layout (0.9ms)
|
4142
|
+
Completed 200 OK in 2ms (Views: 2.0ms)
|
4143
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
4144
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/widget_as_layout (0.0ms)
|
4145
|
+
Completed 200 OK in 3ms (Views: 3.3ms)
|
4146
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
4147
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/widget_as_layout (0.1ms)
|
4148
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
4149
|
+
Processing by TestController#render_with_needs as HTML
|
4150
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4151
|
+
Processing by TestController#render_with_widget_as_layout as HTML
|
4152
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (1.2ms)
|
4153
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
4154
|
+
Processing by TestController#render_with_widget_as_layout_and_vars as HTML
|
4155
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (0.1ms)
|
4156
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
4157
|
+
Processing by TestController#render_with_widget_as_layout_using_content_for as HTML
|
4158
|
+
Rendered test/render_with_widget_as_layout_using_content_for.rb within layouts/widget_as_layout (1.2ms)
|
4159
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
4160
|
+
Rendered text template (0.0ms)
|
4161
|
+
Processing by TestController#render_widget_class as HTML
|
4162
|
+
Connecting to database specified by database.yml
|
4163
|
+
Completed 200 OK in 317ms (Views: 1.8ms)
|
4164
|
+
Processing by TestController#render_widget_instance as HTML
|
4165
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
4166
|
+
Processing by TestController#render_widget_with_ignored_controller_variables as HTML
|
4167
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
4168
|
+
Processing by TestController#render_widget_with_extra_controller_variables as HTML
|
4169
|
+
Completed 500 Internal Server Error in 1ms
|
4170
|
+
Processing by TestController#render_with_content_method as HTML
|
4171
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4172
|
+
Processing by TestController#render_with_rails_options as HTML
|
4173
|
+
Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
|
4174
|
+
Processing by TestController#render_template_with_implicit_assigns as HTML
|
4175
|
+
Rendered test/implicit_assigns.html.rb (1.0ms)
|
4176
|
+
Completed 200 OK in 3ms (Views: 3.2ms)
|
4177
|
+
Processing by TestController#render_template_with_protected_instance_variable as HTML
|
4178
|
+
Rendered test/protected_instance_variable.html.rb (1.0ms)
|
4179
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
4180
|
+
Processing by TestController#render_bare_rb as HTML
|
4181
|
+
Rendered test/bare.rb (1.2ms)
|
4182
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
4183
|
+
Processing by TestController#render_template_with_excess_variables as HTML
|
4184
|
+
Rendered test/render_default.html.rb (0.8ms)
|
4185
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
4186
|
+
Processing by TestController#render_needs_template_with_excess_variables as HTML
|
4187
|
+
Rendered test/needs.html.rb (1.3ms)
|
4188
|
+
Completed 500 Internal Server Error in 2ms
|
4189
|
+
Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
|
4190
|
+
Rendered test/needs.html.rb (0.2ms)
|
4191
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
4192
|
+
Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
|
4193
|
+
Rendered test/needs_subclass.html.rb (1.1ms)
|
4194
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
4195
|
+
Processing by TestController#render_template_with_partial as HTML
|
4196
|
+
Rendered test/_erector.rb (1.3ms)
|
4197
|
+
Rendered test/render_partial.html.rb (7.8ms)
|
4198
|
+
Completed 200 OK in 9ms (Views: 9.3ms)
|
4199
|
+
Processing by TestController#render_erb_from_erector as HTML
|
4200
|
+
Rendered test/_erb.erb (0.5ms)
|
4201
|
+
Rendered test/erb_from_erector.html.rb (3.1ms)
|
4202
|
+
Completed 200 OK in 5ms (Views: 4.4ms)
|
4203
|
+
Processing by TestController#render_erector_from_erb as HTML
|
4204
|
+
Rendered test/_erector.rb (0.2ms)
|
4205
|
+
Rendered test/erector_from_erb.html.erb (0.8ms)
|
4206
|
+
Completed 200 OK in 2ms (Views: 2.1ms)
|
4207
|
+
Processing by TestController#render_erector_with_locals_from_erb as HTML
|
4208
|
+
Rendered test/_partial_with_locals.rb (1.4ms)
|
4209
|
+
Rendered test/erector_with_locals_from_erb.html.erb (3.2ms)
|
4210
|
+
Completed 200 OK in 5ms (Views: 4.4ms)
|
4211
|
+
Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
|
4212
|
+
Rendered test/_partial_with_locals.rb (0.6ms)
|
4213
|
+
Rendered test/erector_with_locals_from_erb.html.erb (1.4ms)
|
4214
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
4215
|
+
Processing by TestController#render_erector_with_locals_from_erb_override as HTML
|
4216
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4217
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
|
4218
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
4219
|
+
Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
|
4220
|
+
Rendered test/_partial_with_locals.rb (1.0ms)
|
4221
|
+
Rendered test/erector_with_locals_from_erb.html.erb (1.7ms)
|
4222
|
+
Completed 500 Internal Server Error in 2ms
|
4223
|
+
Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
|
4224
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4225
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
|
4226
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
4227
|
+
Processing by TestController#render_erector_partial_without_controller_variables as HTML
|
4228
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4229
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
|
4230
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
4231
|
+
Processing by TestController#render_default as HTML
|
4232
|
+
Rendered test/render_default.html.rb (0.4ms)
|
4233
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
4234
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
4235
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/erb_as_layout (0.4ms)
|
4236
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
4237
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
4238
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/erb_as_layout (1.0ms)
|
4239
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
4240
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
4241
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/widget_as_layout (0.1ms)
|
4242
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
4243
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
4244
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/widget_as_layout (0.1ms)
|
4245
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
4246
|
+
Processing by TestController#render_with_needs as HTML
|
4247
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4248
|
+
Processing by TestController#render_with_widget_as_layout as HTML
|
4249
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (1.4ms)
|
4250
|
+
Completed 200 OK in 3ms (Views: 3.2ms)
|
4251
|
+
Processing by TestController#render_with_widget_as_layout_and_vars as HTML
|
4252
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (0.2ms)
|
4253
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
4254
|
+
Processing by TestController#render_with_widget_as_layout_using_content_for as HTML
|
4255
|
+
Rendered test/render_with_widget_as_layout_using_content_for.rb within layouts/widget_as_layout (1.2ms)
|
4256
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
4257
|
+
Rendered text template (0.0ms)
|
4258
|
+
Processing by TestController#render_widget_class as HTML
|
4259
|
+
Connecting to database specified by database.yml
|
4260
|
+
Completed 200 OK in 311ms (Views: 1.7ms)
|
4261
|
+
Processing by TestController#render_widget_instance as HTML
|
4262
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4263
|
+
Processing by TestController#render_widget_with_ignored_controller_variables as HTML
|
4264
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
4265
|
+
Processing by TestController#render_widget_with_extra_controller_variables as HTML
|
4266
|
+
Completed 500 Internal Server Error in 1ms
|
4267
|
+
Processing by TestController#render_with_content_method as HTML
|
4268
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
4269
|
+
Processing by TestController#render_with_rails_options as HTML
|
4270
|
+
Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
|
4271
|
+
Processing by TestController#render_template_with_implicit_assigns as HTML
|
4272
|
+
Rendered test/implicit_assigns.html.rb (1.0ms)
|
4273
|
+
Completed 200 OK in 3ms (Views: 3.1ms)
|
4274
|
+
Processing by TestController#render_template_with_protected_instance_variable as HTML
|
4275
|
+
Rendered test/protected_instance_variable.html.rb (1.0ms)
|
4276
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
4277
|
+
Processing by TestController#render_bare_rb as HTML
|
4278
|
+
Rendered test/bare.rb (1.1ms)
|
4279
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
4280
|
+
Processing by TestController#render_template_with_excess_variables as HTML
|
4281
|
+
Rendered test/render_default.html.rb (1.1ms)
|
4282
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
4283
|
+
Processing by TestController#render_needs_template_with_excess_variables as HTML
|
4284
|
+
Rendered test/needs.html.rb (1.2ms)
|
4285
|
+
Completed 500 Internal Server Error in 2ms
|
4286
|
+
Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
|
4287
|
+
Rendered test/needs.html.rb (0.1ms)
|
4288
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
4289
|
+
Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
|
4290
|
+
Rendered test/needs_subclass.html.rb (0.9ms)
|
4291
|
+
Completed 200 OK in 2ms (Views: 2.1ms)
|
4292
|
+
Processing by TestController#render_template_with_partial as HTML
|
4293
|
+
Rendered test/_erector.rb (1.3ms)
|
4294
|
+
Rendered test/render_partial.html.rb (7.7ms)
|
4295
|
+
Completed 200 OK in 9ms (Views: 9.0ms)
|
4296
|
+
Processing by TestController#render_erb_from_erector as HTML
|
4297
|
+
Rendered test/_erb.erb (0.5ms)
|
4298
|
+
Rendered test/erb_from_erector.html.rb (2.9ms)
|
4299
|
+
Completed 200 OK in 5ms (Views: 4.3ms)
|
4300
|
+
Processing by TestController#render_erector_from_erb as HTML
|
4301
|
+
Rendered test/_erector.rb (0.3ms)
|
4302
|
+
Rendered test/erector_from_erb.html.erb (1.0ms)
|
4303
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
4304
|
+
Processing by TestController#render_erector_with_locals_from_erb as HTML
|
4305
|
+
Rendered test/_partial_with_locals.rb (1.8ms)
|
4306
|
+
Rendered test/erector_with_locals_from_erb.html.erb (4.0ms)
|
4307
|
+
Completed 200 OK in 6ms (Views: 5.3ms)
|
4308
|
+
Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
|
4309
|
+
Rendered test/_partial_with_locals.rb (0.5ms)
|
4310
|
+
Rendered test/erector_with_locals_from_erb.html.erb (1.2ms)
|
4311
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
4312
|
+
Processing by TestController#render_erector_with_locals_from_erb_override as HTML
|
4313
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4314
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
|
4315
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4316
|
+
Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
|
4317
|
+
Rendered test/_partial_with_locals.rb (1.0ms)
|
4318
|
+
Rendered test/erector_with_locals_from_erb.html.erb (1.9ms)
|
4319
|
+
Completed 500 Internal Server Error in 2ms
|
4320
|
+
Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
|
4321
|
+
Rendered test/_partial_with_locals.rb (0.3ms)
|
4322
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
|
4323
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4324
|
+
Processing by TestController#render_erector_partial_without_controller_variables as HTML
|
4325
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4326
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
|
4327
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
4328
|
+
Processing by TestController#render_default as HTML
|
4329
|
+
Rendered test/render_default.html.rb (0.4ms)
|
4330
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
4331
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
4332
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/erb_as_layout (0.4ms)
|
4333
|
+
Completed 200 OK in 3ms (Views: 3.2ms)
|
4334
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
4335
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/erb_as_layout (0.9ms)
|
4336
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
4337
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
4338
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/widget_as_layout (0.1ms)
|
4339
|
+
Completed 200 OK in 4ms (Views: 3.9ms)
|
4340
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
4341
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/widget_as_layout (0.1ms)
|
4342
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
4343
|
+
Processing by TestController#render_with_needs as HTML
|
4344
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4345
|
+
Processing by TestController#render_with_widget_as_layout as HTML
|
4346
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (1.1ms)
|
4347
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
4348
|
+
Processing by TestController#render_with_widget_as_layout_and_vars as HTML
|
4349
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (0.2ms)
|
4350
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
4351
|
+
Processing by TestController#render_with_widget_as_layout_using_content_for as HTML
|
4352
|
+
Rendered test/render_with_widget_as_layout_using_content_for.rb within layouts/widget_as_layout (1.6ms)
|
4353
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
4354
|
+
Rendered text template (0.0ms)
|
4355
|
+
Processing by TestController#render_widget_class as HTML
|
4356
|
+
Connecting to database specified by database.yml
|
4357
|
+
Completed 200 OK in 420ms (Views: 2.5ms)
|
4358
|
+
Processing by TestController#render_widget_instance as HTML
|
4359
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
4360
|
+
Processing by TestController#render_widget_with_ignored_controller_variables as HTML
|
4361
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
4362
|
+
Processing by TestController#render_widget_with_extra_controller_variables as HTML
|
4363
|
+
Completed 500 Internal Server Error in 1ms
|
4364
|
+
Processing by TestController#render_with_content_method as HTML
|
4365
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
4366
|
+
Processing by TestController#render_with_rails_options as HTML
|
4367
|
+
Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
|
4368
|
+
Processing by TestController#render_template_with_implicit_assigns as HTML
|
4369
|
+
Rendered test/implicit_assigns.html.rb (1.1ms)
|
4370
|
+
Completed 200 OK in 4ms (Views: 3.1ms)
|
4371
|
+
Processing by TestController#render_template_with_protected_instance_variable as HTML
|
4372
|
+
Rendered test/protected_instance_variable.html.rb (1.0ms)
|
4373
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
4374
|
+
Processing by TestController#render_bare_rb as HTML
|
4375
|
+
Rendered test/bare.rb (1.6ms)
|
4376
|
+
Completed 200 OK in 4ms (Views: 3.3ms)
|
4377
|
+
Processing by TestController#render_template_with_excess_variables as HTML
|
4378
|
+
Rendered test/render_default.html.rb (1.9ms)
|
4379
|
+
Completed 200 OK in 5ms (Views: 4.7ms)
|
4380
|
+
Processing by TestController#render_needs_template_with_excess_variables as HTML
|
4381
|
+
Rendered test/needs.html.rb (1.6ms)
|
4382
|
+
Completed 500 Internal Server Error in 3ms
|
4383
|
+
Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
|
4384
|
+
Rendered test/needs.html.rb (0.2ms)
|
4385
|
+
Completed 200 OK in 2ms (Views: 2.1ms)
|
4386
|
+
Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
|
4387
|
+
Rendered test/needs_subclass.html.rb (2.3ms)
|
4388
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
4389
|
+
Processing by TestController#render_template_with_partial as HTML
|
4390
|
+
Rendered test/_erector.rb (1.9ms)
|
4391
|
+
Rendered test/render_partial.html.rb (9.5ms)
|
4392
|
+
Completed 200 OK in 13ms (Views: 13.0ms)
|
4393
|
+
Processing by TestController#render_erb_from_erector as HTML
|
4394
|
+
Rendered test/_erb.erb (0.5ms)
|
4395
|
+
Rendered test/erb_from_erector.html.rb (2.7ms)
|
4396
|
+
Completed 200 OK in 5ms (Views: 4.2ms)
|
4397
|
+
Processing by TestController#render_erector_from_erb as HTML
|
4398
|
+
Rendered test/_erector.rb (0.4ms)
|
4399
|
+
Rendered test/erector_from_erb.html.erb (1.4ms)
|
4400
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
4401
|
+
Processing by TestController#render_erector_with_locals_from_erb as HTML
|
4402
|
+
Rendered test/_partial_with_locals.rb (2.3ms)
|
4403
|
+
Rendered test/erector_with_locals_from_erb.html.erb (5.7ms)
|
4404
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
4405
|
+
Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
|
4406
|
+
Rendered test/_partial_with_locals.rb (1.4ms)
|
4407
|
+
Rendered test/erector_with_locals_from_erb.html.erb (3.0ms)
|
4408
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
4409
|
+
Processing by TestController#render_erector_with_locals_from_erb_override as HTML
|
4410
|
+
Rendered test/_partial_with_locals.rb (0.3ms)
|
4411
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
|
4412
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
4413
|
+
Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
|
4414
|
+
Rendered test/_partial_with_locals.rb (1.2ms)
|
4415
|
+
Rendered test/erector_with_locals_from_erb.html.erb (2.1ms)
|
4416
|
+
Completed 500 Internal Server Error in 3ms
|
4417
|
+
Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
|
4418
|
+
Rendered test/_partial_with_locals.rb (0.4ms)
|
4419
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
|
4420
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
4421
|
+
Processing by TestController#render_erector_partial_without_controller_variables as HTML
|
4422
|
+
Rendered test/_partial_with_locals.rb (0.5ms)
|
4423
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
|
4424
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
4425
|
+
Processing by TestController#render_default as HTML
|
4426
|
+
Rendered test/render_default.html.rb (1.0ms)
|
4427
|
+
Completed 200 OK in 6ms (Views: 5.4ms)
|
4428
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
4429
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/erb_as_layout (0.6ms)
|
4430
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
4431
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
4432
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/erb_as_layout (1.6ms)
|
4433
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
4434
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
4435
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/widget_as_layout (0.1ms)
|
4436
|
+
Completed 200 OK in 5ms (Views: 5.1ms)
|
4437
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
4438
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/widget_as_layout (0.2ms)
|
4439
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4440
|
+
Processing by TestController#render_with_needs as HTML
|
4441
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
4442
|
+
Processing by TestController#render_with_widget_as_layout as HTML
|
4443
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (2.2ms)
|
4444
|
+
Completed 200 OK in 5ms (Views: 4.4ms)
|
4445
|
+
Processing by TestController#render_with_widget_as_layout_and_vars as HTML
|
4446
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (0.3ms)
|
4447
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
4448
|
+
Processing by TestController#render_with_widget_as_layout_using_content_for as HTML
|
4449
|
+
Rendered test/render_with_widget_as_layout_using_content_for.rb within layouts/widget_as_layout (2.3ms)
|
4450
|
+
Completed 200 OK in 5ms (Views: 4.7ms)
|
4451
|
+
Rendered text template (0.0ms)
|
4452
|
+
Processing by TestController#render_widget_class as HTML
|
4453
|
+
Connecting to database specified by database.yml
|
4454
|
+
Completed 200 OK in 301ms (Views: 1.9ms)
|
4455
|
+
Processing by TestController#render_widget_instance as HTML
|
4456
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4457
|
+
Processing by TestController#render_widget_with_ignored_controller_variables as HTML
|
4458
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
4459
|
+
Processing by TestController#render_widget_with_extra_controller_variables as HTML
|
4460
|
+
Completed 500 Internal Server Error in 1ms
|
4461
|
+
Processing by TestController#render_with_content_method as HTML
|
4462
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4463
|
+
Processing by TestController#render_with_rails_options as HTML
|
4464
|
+
Completed 500 Internal Server Error in 0ms (Views: 0.3ms)
|
4465
|
+
Processing by TestController#render_template_with_implicit_assigns as HTML
|
4466
|
+
Rendered test/implicit_assigns.html.rb (0.9ms)
|
4467
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
4468
|
+
Processing by TestController#render_template_with_protected_instance_variable as HTML
|
4469
|
+
Rendered test/protected_instance_variable.html.rb (1.0ms)
|
4470
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
4471
|
+
Processing by TestController#render_bare_rb as HTML
|
4472
|
+
Rendered test/bare.rb (1.3ms)
|
4473
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
4474
|
+
Processing by TestController#render_template_with_excess_variables as HTML
|
4475
|
+
Rendered test/render_default.html.rb (0.9ms)
|
4476
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
4477
|
+
Processing by TestController#render_needs_template_with_excess_variables as HTML
|
4478
|
+
Rendered test/needs.html.rb (1.2ms)
|
4479
|
+
Completed 500 Internal Server Error in 2ms
|
4480
|
+
Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
|
4481
|
+
Rendered test/needs.html.rb (0.1ms)
|
4482
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
4483
|
+
Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
|
4484
|
+
Rendered test/needs_subclass.html.rb (1.1ms)
|
4485
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
4486
|
+
Processing by TestController#render_template_with_partial as HTML
|
4487
|
+
Rendered test/_erector.rb (1.3ms)
|
4488
|
+
Rendered test/render_partial.html.rb (7.2ms)
|
4489
|
+
Completed 200 OK in 9ms (Views: 8.6ms)
|
4490
|
+
Processing by TestController#render_erb_from_erector as HTML
|
4491
|
+
Rendered test/_erb.erb (0.5ms)
|
4492
|
+
Rendered test/erb_from_erector.html.rb (2.8ms)
|
4493
|
+
Completed 200 OK in 4ms (Views: 4.3ms)
|
4494
|
+
Processing by TestController#render_erector_from_erb as HTML
|
4495
|
+
Rendered test/_erector.rb (0.2ms)
|
4496
|
+
Rendered test/erector_from_erb.html.erb (0.9ms)
|
4497
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
4498
|
+
Processing by TestController#render_erector_with_locals_from_erb as HTML
|
4499
|
+
Rendered test/_partial_with_locals.rb (1.4ms)
|
4500
|
+
Rendered test/erector_with_locals_from_erb.html.erb (3.1ms)
|
4501
|
+
Completed 200 OK in 5ms (Views: 4.6ms)
|
4502
|
+
Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
|
4503
|
+
Rendered test/_partial_with_locals.rb (0.5ms)
|
4504
|
+
Rendered test/erector_with_locals_from_erb.html.erb (1.2ms)
|
4505
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
4506
|
+
Processing by TestController#render_erector_with_locals_from_erb_override as HTML
|
4507
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4508
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
|
4509
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
4510
|
+
Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
|
4511
|
+
Rendered test/_partial_with_locals.rb (1.1ms)
|
4512
|
+
Rendered test/erector_with_locals_from_erb.html.erb (1.9ms)
|
4513
|
+
Completed 500 Internal Server Error in 3ms
|
4514
|
+
Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
|
4515
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4516
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
|
4517
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4518
|
+
Processing by TestController#render_erector_partial_without_controller_variables as HTML
|
4519
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4520
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
|
4521
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
4522
|
+
Processing by TestController#render_default as HTML
|
4523
|
+
Rendered test/render_default.html.rb (0.4ms)
|
4524
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
4525
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
4526
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/erb_as_layout (0.4ms)
|
4527
|
+
Completed 200 OK in 3ms (Views: 3.3ms)
|
4528
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
4529
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/erb_as_layout (1.2ms)
|
4530
|
+
Completed 200 OK in 4ms (Views: 3.2ms)
|
4531
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
4532
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/widget_as_layout (0.1ms)
|
4533
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
4534
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
4535
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/widget_as_layout (0.1ms)
|
4536
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
4537
|
+
Processing by TestController#render_with_needs as HTML
|
4538
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4539
|
+
Processing by TestController#render_with_widget_as_layout as HTML
|
4540
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (1.1ms)
|
4541
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
4542
|
+
Processing by TestController#render_with_widget_as_layout_and_vars as HTML
|
4543
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (0.1ms)
|
4544
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
4545
|
+
Processing by TestController#render_with_widget_as_layout_using_content_for as HTML
|
4546
|
+
Rendered test/render_with_widget_as_layout_using_content_for.rb within layouts/widget_as_layout (1.4ms)
|
4547
|
+
Completed 200 OK in 3ms (Views: 3.1ms)
|
4548
|
+
Rendered text template (0.0ms)
|
4549
|
+
Processing by TestController#render_widget_class as HTML
|
4550
|
+
Connecting to database specified by database.yml
|
4551
|
+
Completed 200 OK in 343ms (Views: 2.0ms)
|
4552
|
+
Processing by TestController#render_widget_instance as HTML
|
4553
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4554
|
+
Processing by TestController#render_widget_with_ignored_controller_variables as HTML
|
4555
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
4556
|
+
Processing by TestController#render_widget_with_extra_controller_variables as HTML
|
4557
|
+
Completed 500 Internal Server Error in 1ms
|
4558
|
+
Processing by TestController#render_with_content_method as HTML
|
4559
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4560
|
+
Processing by TestController#render_with_rails_options as HTML
|
4561
|
+
Completed 500 Internal Server Error in 0ms (Views: 0.3ms)
|
4562
|
+
Processing by TestController#render_template_with_implicit_assigns as HTML
|
4563
|
+
Rendered test/implicit_assigns.html.rb (1.1ms)
|
4564
|
+
Completed 200 OK in 4ms (Views: 3.6ms)
|
4565
|
+
Processing by TestController#render_template_with_protected_instance_variable as HTML
|
4566
|
+
Rendered test/protected_instance_variable.html.rb (1.0ms)
|
4567
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
4568
|
+
Processing by TestController#render_bare_rb as HTML
|
4569
|
+
Rendered test/bare.rb (1.3ms)
|
4570
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
4571
|
+
Processing by TestController#render_template_with_excess_variables as HTML
|
4572
|
+
Rendered test/render_default.html.rb (1.0ms)
|
4573
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
4574
|
+
Processing by TestController#render_needs_template_with_excess_variables as HTML
|
4575
|
+
Rendered test/needs.html.rb (1.4ms)
|
4576
|
+
Completed 500 Internal Server Error in 3ms
|
4577
|
+
Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
|
4578
|
+
Rendered test/needs.html.rb (0.2ms)
|
4579
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
4580
|
+
Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
|
4581
|
+
Rendered test/needs_subclass.html.rb (1.1ms)
|
4582
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
4583
|
+
Processing by TestController#render_template_with_partial as HTML
|
4584
|
+
Rendered test/_erector.rb (1.4ms)
|
4585
|
+
Rendered test/render_partial.html.rb (7.6ms)
|
4586
|
+
Completed 200 OK in 9ms (Views: 9.1ms)
|
4587
|
+
Processing by TestController#render_erb_from_erector as HTML
|
4588
|
+
Rendered test/_erb.erb (0.7ms)
|
4589
|
+
Rendered test/erb_from_erector.html.rb (3.5ms)
|
4590
|
+
Completed 200 OK in 5ms (Views: 4.8ms)
|
4591
|
+
Processing by TestController#render_erector_from_erb as HTML
|
4592
|
+
Rendered test/_erector.rb (0.3ms)
|
4593
|
+
Rendered test/erector_from_erb.html.erb (1.1ms)
|
4594
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
4595
|
+
Processing by TestController#render_erector_with_locals_from_erb as HTML
|
4596
|
+
Rendered test/_partial_with_locals.rb (2.5ms)
|
4597
|
+
Rendered test/erector_with_locals_from_erb.html.erb (4.5ms)
|
4598
|
+
Completed 200 OK in 6ms (Views: 5.8ms)
|
4599
|
+
Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
|
4600
|
+
Rendered test/_partial_with_locals.rb (0.5ms)
|
4601
|
+
Rendered test/erector_with_locals_from_erb.html.erb (1.4ms)
|
4602
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
4603
|
+
Processing by TestController#render_erector_with_locals_from_erb_override as HTML
|
4604
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4605
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
|
4606
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
4607
|
+
Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
|
4608
|
+
Rendered test/_partial_with_locals.rb (1.5ms)
|
4609
|
+
Rendered test/erector_with_locals_from_erb.html.erb (2.5ms)
|
4610
|
+
Completed 500 Internal Server Error in 4ms
|
4611
|
+
Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
|
4612
|
+
Rendered test/_partial_with_locals.rb (0.3ms)
|
4613
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
|
4614
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
4615
|
+
Processing by TestController#render_erector_partial_without_controller_variables as HTML
|
4616
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4617
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
|
4618
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4619
|
+
Processing by TestController#render_default as HTML
|
4620
|
+
Rendered test/render_default.html.rb (0.5ms)
|
4621
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
4622
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
4623
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/erb_as_layout (0.5ms)
|
4624
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
4625
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
4626
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/erb_as_layout (1.4ms)
|
4627
|
+
Completed 200 OK in 4ms (Views: 3.2ms)
|
4628
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
4629
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/widget_as_layout (0.1ms)
|
4630
|
+
Completed 200 OK in 5ms (Views: 5.2ms)
|
4631
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
4632
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/widget_as_layout (0.2ms)
|
4633
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4634
|
+
Processing by TestController#render_with_needs as HTML
|
4635
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
4636
|
+
Processing by TestController#render_with_widget_as_layout as HTML
|
4637
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (1.3ms)
|
4638
|
+
Completed 200 OK in 4ms (Views: 3.3ms)
|
4639
|
+
Processing by TestController#render_with_widget_as_layout_and_vars as HTML
|
4640
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (0.2ms)
|
4641
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
4642
|
+
Processing by TestController#render_with_widget_as_layout_using_content_for as HTML
|
4643
|
+
Rendered test/render_with_widget_as_layout_using_content_for.rb within layouts/widget_as_layout (1.3ms)
|
4644
|
+
Completed 200 OK in 3ms (Views: 3.0ms)
|
4645
|
+
Rendered text template (0.0ms)
|
4646
|
+
Processing by TestController#render_widget_class as HTML
|
4647
|
+
Connecting to database specified by database.yml
|
4648
|
+
Completed 200 OK in 162.5ms (Views: 0.6ms)
|
4649
|
+
Processing by TestController#render_widget_instance as HTML
|
4650
|
+
Completed 200 OK in 0.5ms (Views: 0.2ms)
|
4651
|
+
Processing by TestController#render_widget_with_ignored_controller_variables as HTML
|
4652
|
+
Completed 200 OK in 0.6ms (Views: 0.4ms)
|
4653
|
+
Processing by TestController#render_widget_with_extra_controller_variables as HTML
|
4654
|
+
Completed 500 Internal Server Error in 0.6ms
|
4655
|
+
Processing by TestController#render_with_content_method as HTML
|
4656
|
+
Completed 200 OK in 0.5ms (Views: 0.3ms)
|
4657
|
+
Processing by TestController#render_with_rails_options as HTML
|
4658
|
+
Completed 500 Internal Server Error in 0.4ms (Views: 0.3ms)
|
4659
|
+
Processing by TestController#render_template_with_implicit_assigns as HTML
|
4660
|
+
Rendered test/implicit_assigns.html.rb (0.9ms)
|
4661
|
+
Completed 200 OK in 2.9ms (Views: 2.8ms)
|
4662
|
+
Processing by TestController#render_template_with_protected_instance_variable as HTML
|
4663
|
+
Rendered test/protected_instance_variable.html.rb (1.3ms)
|
4664
|
+
Completed 200 OK in 3.1ms (Views: 2.8ms)
|
4665
|
+
Processing by TestController#render_bare_rb as HTML
|
4666
|
+
Rendered test/bare.rb (1.2ms)
|
4667
|
+
Completed 200 OK in 3.2ms (Views: 2.9ms)
|
4668
|
+
Processing by TestController#render_template_with_excess_variables as HTML
|
4669
|
+
Rendered test/render_default.html.rb (1.2ms)
|
4670
|
+
Completed 200 OK in 3.5ms (Views: 3.1ms)
|
4671
|
+
Processing by TestController#render_needs_template_with_excess_variables as HTML
|
4672
|
+
Rendered test/needs.html.rb (1.3ms)
|
4673
|
+
Completed 500 Internal Server Error in 2.5ms
|
4674
|
+
Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
|
4675
|
+
Rendered test/needs.html.rb (0.1ms)
|
4676
|
+
Completed 200 OK in 0.8ms (Views: 0.6ms)
|
4677
|
+
Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
|
4678
|
+
Rendered test/needs_subclass.html.rb (0.9ms)
|
4679
|
+
Completed 200 OK in 2.4ms (Views: 2.2ms)
|
4680
|
+
Processing by TestController#render_template_with_partial as HTML
|
4681
|
+
Rendered test/_erector.rb (0.8ms)
|
4682
|
+
Rendered test/render_partial.html.rb (5.3ms)
|
4683
|
+
Completed 200 OK in 6.8ms (Views: 6.6ms)
|
4684
|
+
Processing by TestController#render_erb_from_erector as HTML
|
4685
|
+
Rendered test/_erb.erb (0.4ms)
|
4686
|
+
Rendered test/erb_from_erector.html.rb (2.3ms)
|
4687
|
+
Completed 200 OK in 3.7ms (Views: 3.5ms)
|
4688
|
+
Processing by TestController#render_erector_from_erb as HTML
|
4689
|
+
Rendered test/_erector.rb (0.2ms)
|
4690
|
+
Rendered test/erector_from_erb.html.erb (0.7ms)
|
4691
|
+
Completed 200 OK in 2.2ms (Views: 2.0ms)
|
4692
|
+
Processing by TestController#render_erector_with_locals_from_erb as HTML
|
4693
|
+
Rendered test/_partial_with_locals.rb (0.9ms)
|
4694
|
+
Rendered test/erector_with_locals_from_erb.html.erb (2.5ms)
|
4695
|
+
Completed 200 OK in 4.1ms (Views: 3.9ms)
|
4696
|
+
Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
|
4697
|
+
Rendered test/_partial_with_locals.rb (0.5ms)
|
4698
|
+
Rendered test/erector_with_locals_from_erb.html.erb (1.1ms)
|
4699
|
+
Completed 200 OK in 1.8ms (Views: 1.5ms)
|
4700
|
+
Processing by TestController#render_erector_with_locals_from_erb_override as HTML
|
4701
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4702
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
|
4703
|
+
Completed 200 OK in 1.0ms (Views: 0.8ms)
|
4704
|
+
Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
|
4705
|
+
Rendered test/_partial_with_locals.rb (1.0ms)
|
4706
|
+
Rendered test/erector_with_locals_from_erb.html.erb (1.6ms)
|
4707
|
+
Completed 500 Internal Server Error in 2.2ms
|
4708
|
+
Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
|
4709
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4710
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
|
4711
|
+
Completed 200 OK in 1.0ms (Views: 0.8ms)
|
4712
|
+
Processing by TestController#render_erector_partial_without_controller_variables as HTML
|
4713
|
+
Rendered test/_partial_with_locals.rb (0.2ms)
|
4714
|
+
Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
|
4715
|
+
Completed 200 OK in 1.0ms (Views: 0.7ms)
|
4716
|
+
Processing by TestController#render_default as HTML
|
4717
|
+
Rendered test/render_default.html.rb (0.4ms)
|
4718
|
+
Completed 200 OK in 1.4ms (Views: 1.3ms)
|
4719
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
4720
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/erb_as_layout (0.3ms)
|
4721
|
+
Completed 200 OK in 3.3ms (Views: 3.1ms)
|
4722
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
4723
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/erb_as_layout (0.9ms)
|
4724
|
+
Completed 200 OK in 2.8ms (Views: 2.6ms)
|
4725
|
+
Processing by TestController#render_default_erb_with_layout as HTML
|
4726
|
+
Rendered test/render_default_erb_with_layout.html.erb within layouts/widget_as_layout (0.0ms)
|
4727
|
+
Completed 200 OK in 3.2ms (Views: 3.1ms)
|
4728
|
+
Processing by TestController#render_default_widget_with_layout as HTML
|
4729
|
+
Rendered test/render_default_widget_with_layout.html.rb within layouts/widget_as_layout (0.1ms)
|
4730
|
+
Completed 200 OK in 0.7ms (Views: 0.7ms)
|
4731
|
+
Processing by TestController#render_with_needs as HTML
|
4732
|
+
Completed 200 OK in 0.5ms (Views: 0.3ms)
|
4733
|
+
Processing by TestController#render_with_widget_as_layout as HTML
|
4734
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (0.8ms)
|
4735
|
+
Completed 200 OK in 2.6ms (Views: 2.5ms)
|
4736
|
+
Processing by TestController#render_with_widget_as_layout_and_vars as HTML
|
4737
|
+
Rendered test/render_with_widget_as_layout.rb within layouts/widget_as_layout (0.2ms)
|
4738
|
+
Completed 200 OK in 1.1ms (Views: 0.9ms)
|
4739
|
+
Processing by TestController#render_with_widget_as_layout_using_content_for as HTML
|
4740
|
+
Rendered test/render_with_widget_as_layout_using_content_for.rb within layouts/widget_as_layout (1.0ms)
|
4741
|
+
Completed 200 OK in 3.0ms (Views: 2.8ms)
|