rails-controller-testing-1.0.5/ 0000755 0000041 0000041 00000000000 13704151255 016516 5 ustar www-data www-data rails-controller-testing-1.0.5/test/ 0000755 0000041 0000041 00000000000 13704151255 017475 5 ustar www-data www-data rails-controller-testing-1.0.5/test/helpers/ 0000755 0000041 0000041 00000000000 13704151255 021137 5 ustar www-data www-data rails-controller-testing-1.0.5/test/helpers/template_assertions_test.rb 0000644 0000041 0000041 00000004607 13704151255 026617 0 ustar www-data www-data require 'test_helper'
class RenderTemplateTest < ActionView::TestCase
test "supports specifying templates with a Regexp" do
render(template: "test/hello_world")
assert_template %r{\Atest/hello_world\Z}
end
test "supports specifying partials" do
controller.controller_path = "test"
render(template: "test/calling_partial_with_layout")
assert_template partial: "_partial_for_use_in_layout"
end
test "supports specifying locals (passing)" do
controller.controller_path = "test"
render(template: "test/calling_partial_with_layout")
assert_template partial: "_partial_for_use_in_layout", locals: { name: "David" }
end
test "supports specifying locals (failing)" do
controller.controller_path = "test"
render(template: "test/calling_partial_with_layout")
e = assert_raise ActiveSupport::TestCase::Assertion do
assert_template partial: "_partial_for_use_in_layout", locals: { name: "Somebody Else" }
end
assert_match(/Somebody Else.*David/m, e.message)
end
test 'supports different locals on the same partial' do
controller.controller_path = "test"
render(template: "test/render_two_partials")
assert_template partial: '_partial', locals: { 'first' => '1' }
assert_template partial: '_partial', locals: { 'second' => '2' }
end
test 'raises descriptive error message when template was not rendered' do
controller.controller_path = "test"
render(template: "test/hello_world_with_partial")
e = assert_raise ActiveSupport::TestCase::Assertion do
assert_template partial: 'i_was_never_rendered', locals: { 'did_not' => 'happen' }
end
assert_match "i_was_never_rendered to be rendered but it was not.", e.message
assert_match 'Expected ["/test/partial"] to include "i_was_never_rendered"', e.message
end
test 'specifying locals works when the partial is inside a directory with underline prefix' do
controller.controller_path = "test"
render(template: 'test/render_partial_inside_directory')
assert_template partial: 'test/_directory/_partial_with_locales', locals: { 'name' => 'Jane' }
end
test 'specifying locals works when the partial is inside a directory without underline prefix' do
controller.controller_path = "test"
render(template: 'test/render_partial_inside_directory')
assert_template partial: 'test/_directory/partial_with_locales', locals: { 'name' => 'Jane' }
end
end
rails-controller-testing-1.0.5/test/controllers/ 0000755 0000041 0000041 00000000000 13704151255 022043 5 ustar www-data www-data rails-controller-testing-1.0.5/test/controllers/template_assertions_test.rb 0000644 0000041 0000041 00000011157 13704151255 027521 0 ustar www-data www-data require 'test_helper'
class TemplateAssertionsControllerTest < ActionController::TestCase
def test_with_invalid_hash_keys_raises_argument_error
assert_raise(ArgumentError) do
assert_template foo: "bar"
end
end
def test_with_partial
get :render_with_partial
assert_template partial: '_partial'
end
def test_file_with_relative_path_success
get :render_file_relative_path
assert_template file: 'README.rdoc'
end
def test_with_file_failure
get :render_file_absolute_path
assert_raise(ActiveSupport::TestCase::Assertion) do
assert_template :file => 'test/hello_world'
end
end
def test_with_nil_passes_when_no_template_rendered
get :render_nothing
assert_template nil
end
def test_with_nil_fails_when_template_rendered
get :render_with_template
assert_raise(ActiveSupport::TestCase::Assertion) do
assert_template nil
end
end
def test_with_empty_string_fails_when_template_rendered
get :render_with_template
assert_raise(ActiveSupport::TestCase::Assertion) do
assert_template ""
end
end
def test_with_empty_string_fails_when_no_template_rendered
get :render_nothing
assert_raise(ActiveSupport::TestCase::Assertion) do
assert_template ""
end
end
def test_passes_with_correct_string
get :render_with_template
assert_template 'hello_world'
assert_template 'test/hello_world'
end
def test_passes_with_correct_symbol
get :render_with_template
assert_template :hello_world
end
def test_fails_with_incorrect_string
get :render_with_template
assert_raise(ActiveSupport::TestCase::Assertion) do
assert_template 'hello_planet'
end
end
def test_fails_with_incorrect_string_that_matches
get :render_with_template
assert_raise(ActiveSupport::TestCase::Assertion) do
assert_template 'est/he'
end
end
def test_fails_with_repeated_name_in_path
get :render_with_template_repeating_in_path
assert_raise(ActiveSupport::TestCase::Assertion) do
assert_template 'test/hello'
end
end
def test_fails_with_incorrect_symbol
get :render_with_template
assert_raise(ActiveSupport::TestCase::Assertion) do
assert_template :hello_planet
end
end
def test_fails_with_incorrect_symbol_that_matches
get :render_with_template
assert_raise(ActiveSupport::TestCase::Assertion) do
assert_template :"est/he"
end
end
def test_fails_with_wrong_layout
get :render_with_layout
assert_raise(ActiveSupport::TestCase::Assertion) do
assert_template layout: "application"
end
end
def test_fails_expecting_no_layout
get :render_with_layout
assert_raise(ActiveSupport::TestCase::Assertion) do
assert_template layout: nil
end
end
def test_fails_expecting_not_known_layout
get :render_with_layout
assert_raise(ArgumentError) do
assert_template layout: 1
end
end
def test_passes_with_correct_layout
get :render_with_layout
assert_template layout: "layouts/standard"
end
def test_passes_with_layout_and_partial
get :render_with_layout_and_partial
assert_template layout: "layouts/standard"
assert_template partial: "test/_partial"
end
def test_passed_with_no_layout
get :render_with_template
assert_template layout: nil
end
def test_passed_with_no_layout_false
get :render_with_template
assert_template layout: false
end
def test_passes_with_correct_layout_without_layouts_prefix
get :render_with_layout
assert_template layout: "standard"
end
def test_passes_with_correct_layout_symbol
get :render_with_layout
assert_template layout: :standard
end
def test_assert_template_reset_between_requests
get :render_with_template
assert_template 'test/hello_world'
get :render_nothing
assert_template nil
get :render_with_partial
assert_template partial: 'test/_partial'
get :render_nothing
assert_template partial: nil
get :render_with_layout
assert_template layout: 'layouts/standard'
get :render_nothing
assert_template layout: nil
get :render_file_relative_path
assert_template file: 'README.rdoc'
get :render_nothing
assert_template file: nil
end
def test_locals_option_to_assert_template_is_not_supported
get :render_nothing
warning_buffer = StringIO.new
$stderr = warning_buffer
assert_template partial: 'customer_greeting', locals: { greeting: 'Bonjour' }
assert_includes warning_buffer.string, "the :locals option to #assert_template is only supported in a ActionView::TestCase\n"
ensure
$stderr = STDERR
end
end
rails-controller-testing-1.0.5/test/controllers/assigns_test.rb 0000644 0000041 0000041 00000001433 13704151255 025077 0 ustar www-data www-data require 'test_helper'
class AssignsControllerTest < ActionController::TestCase
def test_assigns
process :test_assigns
# assigns can be accessed using assigns(key)
# or assigns[key], where key is a string or
# a symbol
assert_equal "foo", assigns(:foo)
assert_equal "foo", assigns("foo")
assert_equal "foo", assigns[:foo]
assert_equal "foo", assigns["foo"]
# but the assigned variable should not have its own keys stringified
expected_hash = { foo: :bar }
assert_equal expected_hash, assigns(:foo_hash)
end
def test_view_assigns
@controller = ViewAssignsController.new
process :test_assigns
assert_nil assigns(:foo)
assert_nil assigns[:foo]
assert_equal "bar", assigns(:bar)
assert_equal "bar", assigns[:bar]
end
end
rails-controller-testing-1.0.5/test/dummy/ 0000755 0000041 0000041 00000000000 13704151255 020630 5 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/config.ru 0000644 0000041 0000041 00000000231 13704151255 022441 0 ustar www-data www-data # This file is used by Rack-based servers to start the application.
require ::File.expand_path('../config/environment', __FILE__)
run Rails.application
rails-controller-testing-1.0.5/test/dummy/bin/ 0000755 0000041 0000041 00000000000 13704151255 021400 5 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/bin/bundle 0000755 0000041 0000041 00000000201 13704151255 022570 0 ustar www-data www-data #!/usr/bin/env ruby
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
load Gem.bin_path('bundler', 'bundle')
rails-controller-testing-1.0.5/test/dummy/bin/rails 0000755 0000041 0000041 00000000221 13704151255 022433 0 ustar www-data www-data #!/usr/bin/env ruby
APP_PATH = File.expand_path('../../config/application', __FILE__)
require_relative '../config/boot'
require 'rails/commands'
rails-controller-testing-1.0.5/test/dummy/bin/setup 0000755 0000041 0000041 00000001445 13704151255 022472 0 ustar www-data www-data #!/usr/bin/env ruby
require 'pathname'
# path to your application root.
APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
Dir.chdir APP_ROOT do
# This script is a starting point to setup your application.
# Add necessary setup steps to this file:
puts "== Installing dependencies =="
system "gem install bundler --conservative"
system "bundle check || bundle install"
# puts "\n== Copying sample files =="
# unless File.exist?("config/database.yml")
# system "cp config/database.yml.sample config/database.yml"
# end
puts "\n== Preparing database =="
system "bin/rake db:setup"
puts "\n== Removing old logs and tempfiles =="
system "rm -f log/*"
system "rm -rf tmp/cache"
puts "\n== Restarting application server =="
system "touch tmp/restart.txt"
end
rails-controller-testing-1.0.5/test/dummy/bin/rake 0000755 0000041 0000041 00000000132 13704151255 022244 0 ustar www-data www-data #!/usr/bin/env ruby
require_relative '../config/boot'
require 'rake'
Rake.application.run
rails-controller-testing-1.0.5/test/dummy/app/ 0000755 0000041 0000041 00000000000 13704151255 021410 5 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/app/helpers/ 0000755 0000041 0000041 00000000000 13704151255 023052 5 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/app/helpers/application_helper.rb 0000644 0000041 0000041 00000000035 13704151255 027237 0 ustar www-data www-data module ApplicationHelper
end
rails-controller-testing-1.0.5/test/dummy/app/controllers/ 0000755 0000041 0000041 00000000000 13704151255 023756 5 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/app/controllers/view_assigns_controller.rb 0000644 0000041 0000041 00000000241 13704151255 031244 0 ustar www-data www-data class ViewAssignsController < ActionController::Base
def test_assigns
@foo = "foo"
head :ok
end
def view_assigns
{ "bar" => "bar" }
end
end
rails-controller-testing-1.0.5/test/dummy/app/controllers/template_assertions_controller.rb 0000644 0000041 0000041 00000001377 13704151255 032643 0 ustar www-data www-data class TemplateAssertionsController < ActionController::Base
def render_nothing
head :ok
end
def render_with_template
render template: "test/hello_world"
end
def render_with_template_repeating_in_path
render template: "test/hello/hello"
end
def render_with_partial
render partial: 'test/partial'
end
def render_file_absolute_path
render file: File.expand_path('../../../README.rdoc', __FILE__)
end
def render_file_relative_path
render file: '/test/dummy/README.rdoc'
end
def render_with_layout
@variable_for_layout = 'hello'
render "test/hello_world", layout: "layouts/standard"
end
def render_with_layout_and_partial
render "test/hello_world_with_partial", layout: "layouts/standard"
end
end
rails-controller-testing-1.0.5/test/dummy/app/controllers/assigns_controller.rb 0000644 0000041 0000041 00000000212 13704151255 030210 0 ustar www-data www-data class AssignsController < ActionController::Base
def test_assigns
@foo = "foo"
@foo_hash = { foo: :bar }
head :ok
end
end
rails-controller-testing-1.0.5/test/dummy/app/views/ 0000755 0000041 0000041 00000000000 13704151255 022545 5 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/app/views/test/ 0000755 0000041 0000041 00000000000 13704151255 023524 5 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/app/views/test/hello_world_with_partial.html.erb 0000644 0000041 0000041 00000000036 13704151255 032241 0 ustar www-data www-data <%= render '/test/partial' %>
rails-controller-testing-1.0.5/test/dummy/app/views/test/render_partial_inside_directory.html.erb 0000644 0000041 0000041 00000000132 13704151255 033567 0 ustar www-data www-data <%= render partial: 'test/_directory/partial_with_locales', locals: {'name' => 'Jane'} %>
rails-controller-testing-1.0.5/test/dummy/app/views/test/hello_world.html.erb 0000644 0000041 0000041 00000000000 13704151255 027461 0 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/app/views/test/_directory/ 0000755 0000041 0000041 00000000000 13704151255 025667 5 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/app/views/test/_directory/_partial_with_locales.html.erb 0000644 0000041 0000041 00000000022 13704151255 033646 0 ustar www-data www-data Hello <%= name %>
rails-controller-testing-1.0.5/test/dummy/app/views/test/_partial_for_use_in_layout.html.erb 0000644 0000041 0000041 00000000042 13704151255 032555 0 ustar www-data www-data Inside from partial (<%= name %>)
rails-controller-testing-1.0.5/test/dummy/app/views/test/render_two_partials.html.erb 0000644 0000041 0000041 00000000167 13704151255 031234 0 ustar www-data www-data <%= render partial: 'partial', locals: {'first' => '1'} %>
<%= render partial: 'partial', locals: {'second' => '2'} %>
rails-controller-testing-1.0.5/test/dummy/app/views/test/_layout_for_partial.html.erb 0000644 0000041 0000041 00000000050 13704151255 031212 0 ustar www-data www-data Before (<%= name %>)
<%= yield %>
After
rails-controller-testing-1.0.5/test/dummy/app/views/test/calling_partial_with_layout.html.erb 0000644 0000041 0000041 00000000155 13704151255 032737 0 ustar www-data www-data <%= render(layout: "layout_for_partial", partial: "partial_for_use_in_layout", locals: { name: "David" }) %>
rails-controller-testing-1.0.5/test/dummy/app/views/test/_partial.html.erb 0000644 0000041 0000041 00000000000 13704151255 026742 0 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/app/views/test/hello/ 0000755 0000041 0000041 00000000000 13704151255 024627 5 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/app/views/test/hello/hello.html.erb 0000644 0000041 0000041 00000000000 13704151255 027355 0 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/app/views/layouts/ 0000755 0000041 0000041 00000000000 13704151255 024245 5 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/app/views/layouts/application.html.erb 0000644 0000041 0000041 00000000447 13704151255 030212 0 ustar www-data www-data
Dummy
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
<%= yield %>
rails-controller-testing-1.0.5/test/dummy/app/views/layouts/standard.html.erb 0000644 0000041 0000041 00000000000 13704151255 027470 0 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/log/ 0000755 0000041 0000041 00000000000 13704151255 021411 5 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/log/test.log 0000644 0000041 0000041 00002460171 13704151255 023106 0 ustar www-data www-data -----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 16:06:13 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.9ms | Allocations: 233)
Completed 200 OK in 8ms (Views: 7.7ms | Allocations: 1763)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:13 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 49)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:06:13 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 384)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:13 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:06:13 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 1.4ms | Allocations: 467)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 16:06:13 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:13 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 16:06:13 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 78)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 331)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:13 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:06:13 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 172)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:06:13 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 16:06:13 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:13 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:06:13 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:13 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:06:13 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.8ms | Allocations: 408)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.4ms | Allocations: 725)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.6ms | Allocations: 300)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.2ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.8ms | Allocations: 424)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 93)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 93)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 73)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.3ms | Allocations: 635)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 47)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 187)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 129)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 176)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 176)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 171)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.1ms | Allocations: 69)
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 349)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 123)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 178)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 168)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 171)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 390)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 61)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 47)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 76)
Rendered test/hello_world_with_partial.html.erb (Duration: 1.3ms | Allocations: 556)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.3ms | Allocations: 635)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.2ms | Allocations: 71)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.2ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.8ms | Allocations: 424)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 73)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.8ms | Allocations: 408)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.4ms | Allocations: 723)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 93)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 93)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 677)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 471)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 383)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 191)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.3ms | Allocations: 180)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 460)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 171)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 176)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 171)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 129)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 390)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 191)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.1ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 190)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 123)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 178)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 168)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 16:06:42 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:42 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 16:06:42 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:42 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:06:42 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:42 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 16:06:42 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:42 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:06:42 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 171)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 16:06:42 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:42 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:06:42 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:06:42 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:42 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:06:42 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 171)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:06:42 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 16:06:51 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.5ms | Allocations: 242)
Completed 200 OK in 3ms (Views: 2.8ms | Allocations: 1282)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:51 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 50)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:06:51 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.1ms | Allocations: 71)
Completed 200 OK in 2ms (Views: 1.6ms | Allocations: 826)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 16:06:51 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 1.2ms | Allocations: 380)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:51 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 16:06:51 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:51 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 16:06:51 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:51 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:06:51 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:51 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:06:51 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 466)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:06:51 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:06:51 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 171)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:06:51 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 187)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:06:51 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 16:07:00 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.7ms | Allocations: 242)
Completed 200 OK in 3ms (Views: 3.0ms | Allocations: 1282)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:00 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 50)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:07:00 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.1ms | Allocations: 71)
Completed 200 OK in 2ms (Views: 1.5ms | Allocations: 826)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:07:00 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 472)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:07:00 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:00 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 16:07:00 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.5ms | Allocations: 374)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:00 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:07:00 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 16:07:00 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:00 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 16:07:00 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:00 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:07:00 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:00 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:07:00 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 171)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:07:12 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.6ms | Allocations: 234)
Completed 200 OK in 4ms (Views: 3.9ms | Allocations: 1776)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:12 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 49)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:07:12 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 472)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:07:12 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:12 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:07:12 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:07:12 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 187)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 16:07:12 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 82)
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 335)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:12 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 16:07:12 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:12 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 16:07:12 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 374)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:12 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 16:07:12 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:12 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:07:12 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 171)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 16:07:22 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.6ms | Allocations: 234)
Completed 200 OK in 4ms (Views: 4.3ms | Allocations: 1769)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:22 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 49)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:07:22 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 2ms (Views: 1.5ms | Allocations: 467)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 16:07:22 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 79)
Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 332)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:22 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 16:07:22 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 191)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:22 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:07:22 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 386)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:22 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:07:22 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 187)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:22 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 16:07:22 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:07:22 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:07:22 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 171)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:07:22 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 2ms (Views: 2.1ms | Allocations: 187)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:07:22 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:18:59 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 4ms (Views: 3.7ms | Allocations: 1258)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:19:20 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.8ms | Allocations: 1257)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:19:48 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.5ms | Allocations: 1258)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:23:03 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 6ms (Views: 5.9ms | Allocations: 1267)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:23:39 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 4ms (Views: 4.3ms | Allocations: 1267)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:24:10 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 2.5ms | Allocations: 1266)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:24:38 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 3.0ms | Allocations: 1205)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:25:14 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 5ms (Views: 4.3ms | Allocations: 1204)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:25:50 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 5ms (Views: 4.9ms | Allocations: 1156)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:32:29 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.7ms | Allocations: 1155)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:32:52 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 2ms (Views: 2.3ms | Allocations: 1236)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:33:20 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.8ms | Allocations: 1236)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:33:53 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.9ms | Allocations: 1257)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:34:19 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 2ms (Views: 2.4ms | Allocations: 1257)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:34:38 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.7ms | Allocations: 1258)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:35:21 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.9ms | Allocations: 1266)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:35:41 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 1.6ms | Allocations: 230)
Completed 200 OK in 5ms (Views: 4.6ms | Allocations: 1713)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:35:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 49)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:36:12 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.7ms | Allocations: 1268)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:36:18 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.8ms | Allocations: 1264)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:36:22 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.6ms | Allocations: 230)
Completed 200 OK in 4ms (Views: 3.7ms | Allocations: 1713)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:36:22 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 49)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:36:27 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.8ms | Allocations: 230)
Completed 200 OK in 4ms (Views: 4.3ms | Allocations: 1713)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:36:27 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 49)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:36:31 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 2ms (Views: 2.4ms | Allocations: 1264)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:36:36 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.6ms | Allocations: 230)
Completed 200 OK in 4ms (Views: 3.8ms | Allocations: 1713)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:36:36 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 49)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:36:41 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.5ms | Allocations: 1264)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 16:58:08 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.8ms | Allocations: 1264)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 16:58:58 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.5ms | Allocations: 235)
Completed 200 OK in 4ms (Views: 3.7ms | Allocations: 1620)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:58:58 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 49)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_absolute_path" for 127.0.0.1 at 2020-04-16 16:58:58 -0400
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 483)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:58:58 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 381)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 16:58:58 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 81)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 328)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:58:58 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 16:58:58 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:58:58 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:58:58 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:58:58 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 16:58:58 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:58:58 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:58:58 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 187)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 16:58:58 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 16:58:58 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 17:00:06 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.6ms | Allocations: 1264)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 17:03:13 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Completed 500 Internal Server Error in 3ms (Allocations: 2014)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 17:03:19 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Completed 500 Internal Server Error in 3ms (Allocations: 2014)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 17:03:28 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Completed 500 Internal Server Error in 3ms (Allocations: 2018)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 17:03:47 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Completed 500 Internal Server Error in 3ms (Allocations: 2016)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 17:04:37 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Completed 500 Internal Server Error in 3ms (Allocations: 2014)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 17:04:50 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering ./test/dummy/README.rdoc
Rendered ./test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 2.8ms | Allocations: 1261)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 17:05:14 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Completed 500 Internal Server Error in 3ms (Allocations: 1889)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 17:05:21 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Completed 500 Internal Server Error in 3ms (Allocations: 1890)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 17:05:27 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Completed 500 Internal Server Error in 3ms (Allocations: 1889)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 17:05:30 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Completed 500 Internal Server Error in 3ms (Allocations: 1888)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 17:05:34 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.7ms | Allocations: 230)
Completed 200 OK in 4ms (Views: 3.7ms | Allocations: 1715)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:05:34 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 49)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.6ms | Allocations: 244)
Completed 200 OK in 3ms (Views: 2.6ms | Allocations: 1135)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 50)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.2ms | Allocations: 73)
Completed 200 OK in 2ms (Views: 2.1ms | Allocations: 915)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 209)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.2ms | Allocations: 72)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 387)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 382)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.1ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 187)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:05:46 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.6ms | Allocations: 241)
Completed 200 OK in 3ms (Views: 2.6ms | Allocations: 1131)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 50)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.2ms | Allocations: 72)
Completed 200 OK in 2ms (Views: 1.7ms | Allocations: 800)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 379)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.2ms | Allocations: 73)
Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 498)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 187)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 208)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-16 17:06:02 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 190)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 190)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 190)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 123)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 178)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 203)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.1ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 190)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 129)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.3ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 1.2ms | Allocations: 596)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 209)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 72)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 385)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 191)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.3ms | Allocations: 156)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 460)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 191)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 218)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 211)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.8ms | Allocations: 405)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.4ms | Allocations: 714)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.2ms | Allocations: 108)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.8ms | Allocations: 420)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 73)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 81)
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 78)
Rendered test/render_two_partials.html.erb (Duration: 1.1ms | Allocations: 675)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 93)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.2ms | Allocations: 72)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 93)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 78)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.6ms | Allocations: 364)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 47)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 63)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 47)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.9ms | Allocations: 225)
Rendered test/calling_partial_with_layout.html.erb (Duration: 3.6ms | Allocations: 867)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.4ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 1.2ms | Allocations: 409)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.6ms | Allocations: 642)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 76)
Rendered test/hello_world_with_partial.html.erb (Duration: 1.1ms | Allocations: 340)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 67)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.2ms | Allocations: 71)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 1.4ms | Allocations: 623)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 357)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.1ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 181)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.3ms | Allocations: 71)
Completed 200 OK in 2ms (Views: 1.6ms | Allocations: 897)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 182)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 232)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 324)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-21 17:07:49 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 1.3ms | Allocations: 450)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 185)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 171)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 166)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 278)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 124)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 173)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 273)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 46)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.1ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 185)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.1ms | Allocations: 63)
Completed 200 OK in 3ms (Views: 2.7ms | Allocations: 329)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 74)
Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 379)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.5ms | Allocations: 231)
Completed 200 OK in 4ms (Views: 3.9ms | Allocations: 1752)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 772)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 76)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.7ms | Allocations: 343)
Completed 200 OK in 1ms (Views: 1.4ms | Allocations: 827)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 50)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 1.4ms | Allocations: 450)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 376)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 124)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 173)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 273)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 46)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 171)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 166)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 324)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 320)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-21 17:11:39 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 48)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 47)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.5ms | Allocations: 225)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.5ms | Allocations: 700)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.3ms | Allocations: 626)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.2ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.8ms | Allocations: 409)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 16)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 68)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.5ms | Allocations: 183)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 1.1ms | Allocations: 233)
Completed 200 OK in 7ms (Views: 7.0ms | Allocations: 1754)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 4ms (Views: 4.4ms | Allocations: 375)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 182)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 376)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 77)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.9ms | Allocations: 344)
Completed 200 OK in 1ms (Views: 1.4ms | Allocations: 641)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 50)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 181)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 124)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 173)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.2ms | Allocations: 69)
Completed 200 OK in 1ms (Views: 1.3ms | Allocations: 766)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 1.3ms | Allocations: 46)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 278)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 1.1ms | Allocations: 451)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 130)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 171)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 166)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 62)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 48)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.4ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 1.8ms | Allocations: 576)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.6ms | Allocations: 642)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.8ms | Allocations: 225)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.9ms | Allocations: 700)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 76)
Rendered test/hello_world_with_partial.html.erb (Duration: 1.1ms | Allocations: 340)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 67)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.2ms | Allocations: 71)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 1.3ms | Allocations: 623)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.5ms | Allocations: 233)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.4ms | Allocations: 71)
Completed 200 OK in 2ms (Views: 1.8ms | Allocations: 778)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 321)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 181)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:47:37 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.1ms | Allocations: 63)
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 328)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 2ms (Views: 1.6ms | Allocations: 450)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 278)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 171)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 166)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 124)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 173)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 273)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 46)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.3ms | Allocations: 74)
Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 380)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 181)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.5ms | Allocations: 233)
Completed 200 OK in 4ms (Views: 4.0ms | Allocations: 1754)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 377)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 50)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 370)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 47)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 78)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 321)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.7ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 175)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 46)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.2ms | Allocations: 69)
Completed 200 OK in 1ms (Views: 1.1ms | Allocations: 556)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 1.1ms | Allocations: 46)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 182)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.3ms | Allocations: 149)
Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 445)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 278)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.1ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 451)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 171)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 166)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 4ms (Views: 3.6ms | Allocations: 1270)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 166)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 3.0ms | Allocations: 1272)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 166)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 4ms (Views: 3.6ms | Allocations: 1270)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 166)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.4ms | Allocations: 225)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.9ms | Allocations: 870)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.2ms | Allocations: 71)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.5ms | Allocations: 642)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.2ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.7ms | Allocations: 409)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 76)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.7ms | Allocations: 340)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.1ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.2ms | Allocations: 88)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 67)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 620)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.1ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 376)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 50)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 370)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 450)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.4ms | Allocations: 165)
Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 430)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 166)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 171)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 166)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 124)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 173)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 163)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.1ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 185)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 48)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 47)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-22 16:49:00 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:49:00 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-22 16:49:00 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:49:00 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 16:49:00 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 16:49:00 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 16:49:00 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:49:00 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-22 16:49:00 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:49:00 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 16:49:00 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:49:00 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-22 16:49:00 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:49:00 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-22 16:49:00 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 166)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-22 16:49:00 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 166)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-22 16:49:11 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.5ms | Allocations: 225)
Completed 200 OK in 4ms (Views: 4.0ms | Allocations: 1979)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:49:11 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 50)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 16:49:11 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.2ms | Allocations: 77)
Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 566)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:49:11 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 16:49:11 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 182)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-22 16:49:11 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:49:11 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 16:49:11 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:49:11 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-22 16:49:11 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 78)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 324)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:49:11 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-22 16:49:11 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:49:11 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-22 16:49:12 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 320)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:49:12 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 16:49:12 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-22 16:49:12 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:49:12 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 48)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 47)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.4ms | Allocations: 225)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.4ms | Allocations: 702)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.1ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.3ms | Allocations: 88)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.2ms | Allocations: 626)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.2ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.7ms | Allocations: 409)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.5ms | Allocations: 266)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 67)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 450)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 166)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 278)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.1ms | Allocations: 63)
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 328)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 185)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 376)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 182)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 171)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 124)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 47)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 173)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 46)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.5ms | Allocations: 273)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.5ms | Allocations: 46)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 2.8ms | Allocations: 1272)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 166)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 2.8ms | Allocations: 1272)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 166)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 4ms (Views: 3.6ms | Allocations: 1270)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 166)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 4ms (Views: 4.0ms | Allocations: 1270)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 2.9ms | Allocations: 1270)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Completed 500 Internal Server Error in 4ms (Allocations: 1860)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Completed 500 Internal Server Error in 4ms (Allocations: 1882)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Completed 500 Internal Server Error in 3ms (Allocations: 1860)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Completed 500 Internal Server Error in 6ms (Allocations: 1879)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Completed 500 Internal Server Error in 4ms (Allocations: 1860)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 2.9ms | Allocations: 1270)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Completed 500 Internal Server Error in 4ms (Allocations: 1860)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.6ms | Allocations: 229)
Completed 200 OK in 4ms (Views: 4.1ms | Allocations: 1842)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.6ms | Allocations: 233)
Completed 200 OK in 4ms (Views: 3.6ms | Allocations: 1602)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 382)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 72)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 385)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 191)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 49)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 80)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 326)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 191)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.3ms | Allocations: 156)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 460)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 191)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 123)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 178)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 492)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.8ms | Allocations: 45)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 597)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 187)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 208)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 190)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 218)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 211)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 208)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 208)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 16:52:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.2ms | Allocations: 108)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.7ms | Allocations: 420)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.1ms | Allocations: 72)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.6ms | Allocations: 405)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.1ms | Allocations: 714)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 93)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.1ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.2ms | Allocations: 93)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 73)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 81)
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 78)
Rendered test/render_two_partials.html.erb (Duration: 1.1ms | Allocations: 675)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 78)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.6ms | Allocations: 364)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 47)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Completed 500 Internal Server Error in 3ms (Allocations: 1542)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 4ms (Views: 3.7ms | Allocations: 1272)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.6ms | Allocations: 227)
Completed 200 OK in 5ms (Views: 4.7ms | Allocations: 1939)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.6ms | Allocations: 227)
Completed 200 OK in 5ms (Views: 4.6ms | Allocations: 1947)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.5ms | Allocations: 227)
Completed 200 OK in 4ms (Views: 4.2ms | Allocations: 1957)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Completed 500 Internal Server Error in 4ms (Allocations: 1900)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Completed 500 Internal Server Error in 3ms (Allocations: 1899)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Completed 500 Internal Server Error in 5ms (Allocations: 1897)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Completed 500 Internal Server Error in 3ms (Allocations: 1897)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Completed 500 Internal Server Error in 3ms (Allocations: 1896)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Completed 500 Internal Server Error in 3ms (Allocations: 1889)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Completed 500 Internal Server Error in 5ms (Allocations: 1892)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 3.0ms | Allocations: 1283)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 3.1ms | Allocations: 1282)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 2.5ms | Allocations: 1287)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 4ms (Views: 3.5ms | Allocations: 1287)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 3.0ms | Allocations: 1289)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.7ms | Allocations: 7)
Completed 200 OK in 4ms (Views: 4.1ms | Allocations: 1287)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 3.1ms | Allocations: 1287)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.7ms | Allocations: 233)
Completed 200 OK in 5ms (Views: 4.5ms | Allocations: 1854)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.6ms | Allocations: 232)
Completed 200 OK in 4ms (Views: 4.0ms | Allocations: 1852)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 3.0ms | Allocations: 1278)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.5ms | Allocations: 1275)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.8ms | Allocations: 1275)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.7ms | Allocations: 1275)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.8ms | Allocations: 1275)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.6ms | Allocations: 1275)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.8ms | Allocations: 1275)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 3.1ms | Allocations: 1276)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.5ms | Allocations: 229)
Completed 200 OK in 4ms (Views: 4.0ms | Allocations: 1849)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 2ms (Views: 2.4ms | Allocations: 1278)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 2.9ms | Allocations: 1278)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 3.2ms | Allocations: 1277)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 2.8ms | Allocations: 1277)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 4ms (Views: 4.2ms | Allocations: 1277)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 5ms (Views: 4.7ms | Allocations: 1278)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 3.2ms | Allocations: 1287)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.6ms | Allocations: 227)
Completed 200 OK in 5ms (Views: 4.8ms | Allocations: 1999)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.7ms | Allocations: 227)
Completed 200 OK in 4ms (Views: 4.3ms | Allocations: 1998)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.5ms | Allocations: 225)
Completed 200 OK in 4ms (Views: 3.9ms | Allocations: 1996)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 50)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 70)
Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 534)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.2ms | Allocations: 77)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 382)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 76)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.6ms | Allocations: 343)
Completed 200 OK in 1ms (Views: 1.4ms | Allocations: 827)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 377)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 224)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 216)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 124)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 173)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 273)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 185)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.4ms | Allocations: 225)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.3ms | Allocations: 700)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.2ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.7ms | Allocations: 409)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 67)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.4ms | Allocations: 201)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.2ms | Allocations: 607)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 17:23:48 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 182)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-22 17:23:48 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 324)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 17:23:48 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-22 17:23:48 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 320)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 17:23:48 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-22 17:23:48 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 17:23:48 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 17:23:48 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 17:23:48 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-22 17:23:48 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 17:23:48 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-22 17:23:48 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 17:23:48 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-22 17:23:48 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 17:23:48 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 17:23:48 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-22 17:23:49 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-22 17:23:49 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 49)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 47)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 2.1ms | Allocations: 233)
Completed 200 OK in 8ms (Views: 8.3ms | Allocations: 1754)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 1ms (Views: 8.3ms | Allocations: 50)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 78)
Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 323)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.8ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 363)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.7ms | Allocations: 46)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.6ms | Allocations: 70)
Completed 200 OK in 2ms (Views: 1.8ms | Allocations: 558)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 1.8ms | Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 1.1ms | Allocations: 458)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 173)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 185)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 130)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 178)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 185)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 278)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.4ms | Allocations: 149)
Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 445)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 182)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 376)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 4ms (Views: 4.1ms | Allocations: 1278)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 3.0ms | Allocations: 1280)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 4ms (Views: 4.4ms | Allocations: 1278)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 3.0ms | Allocations: 1270)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 7)
Completed 200 OK in 3ms (Views: 3.0ms | Allocations: 1270)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 12)
Completed 200 OK in 4ms (Views: 3.8ms | Allocations: 1277)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 12)
Completed 200 OK in 3ms (Views: 3.0ms | Allocations: 1277)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 12)
Completed 200 OK in 3ms (Views: 3.1ms | Allocations: 1275)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 19)
Completed 200 OK in 3ms (Views: 3.0ms | Allocations: 1282)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 62)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 46)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.9ms | Allocations: 232)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 1.5ms | Allocations: 408)
Rendered test/calling_partial_with_layout.html.erb (Duration: 2.6ms | Allocations: 727)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.1ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 93)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.5ms | Allocations: 670)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.4ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 1.2ms | Allocations: 424)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 73)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.1ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 93)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 77)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.7ms | Allocations: 355)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-23 16:08:41 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 677)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:08:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-23 16:08:41 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 383)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-23 16:08:41 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 241)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:08:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-23 16:08:41 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:08:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-23 16:08:41 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:08:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-23 16:08:41 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:08:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-23 16:08:41 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 1.4ms | Allocations: 466)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-23 16:08:41 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:08:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-23 16:08:41 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 171)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-23 16:08:41 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 190)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 176)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 171)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 171)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 123)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 178)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 168)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 129)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 390)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 191)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 176)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.1ms | Allocations: 69)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 349)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.7ms | Allocations: 232)
Completed 200 OK in 5ms (Views: 4.9ms | Allocations: 1766)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 380)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 1.1ms | Allocations: 471)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 49)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 176)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 171)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 75)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 325)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.6ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 179)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 168)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 171)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.5ms | Allocations: 155)
Completed 200 OK in 1ms (Views: 1.1ms | Allocations: 465)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 191)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 390)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 187)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 129)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 47)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.5ms | Allocations: 654)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.2ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.9ms | Allocations: 425)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.4ms | Allocations: 197)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.8ms | Allocations: 408)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.4ms | Allocations: 723)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 73)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.1ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 93)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.1ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 93)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-23 16:12:30 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 187)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-23 16:12:30 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 171)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-23 16:12:30 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 171)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-23 16:12:30 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:12:30 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-23 16:12:30 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:12:30 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-23 16:12:30 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:12:30 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-23 16:12:30 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:12:30 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-23 16:12:30 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:12:30 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-23 16:12:30 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:12:30 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-23 16:12:30 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.7ms | Allocations: 233)
Completed 200 OK in 4ms (Views: 4.0ms | Allocations: 1604)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.2ms | Allocations: 72)
Completed 200 OK in 1ms (Views: 1.2ms | Allocations: 627)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 212)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 78)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.8ms | Allocations: 353)
Completed 200 OK in 2ms (Views: 1.7ms | Allocations: 849)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 49)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 187)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 218)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 1.1ms | Allocations: 466)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 191)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 123)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 178)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 45)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 202)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 72)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 385)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 187)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 190)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 129)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.1ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 190)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 190)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 207)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.1ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 207)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-04-23 16:12:43 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 47)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.2ms | Allocations: 108)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.8ms | Allocations: 420)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 73)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.7ms | Allocations: 405)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.3ms | Allocations: 714)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.1ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 93)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 78)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.7ms | Allocations: 383)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.3ms | Allocations: 72)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 81)
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 78)
Rendered test/render_two_partials.html.erb (Duration: 1.5ms | Allocations: 656)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.1ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 93)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.2ms | Allocations: 7)
Completed 200 OK in 4ms (Views: 3.7ms | Allocations: 1270)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 166)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.9ms | Allocations: 229)
Completed 200 OK in 3ms (Views: 2.9ms | Allocations: 932)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 2.9ms | Allocations: 50)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 75)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 319)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.6ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 362)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.7ms | Allocations: 46)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 164)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.5ms | Allocations: 149)
Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 445)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 166)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 376)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 171)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 48)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 47)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.9ms | Allocations: 225)
Rendered test/calling_partial_with_layout.html.erb (Duration: 2.0ms | Allocations: 700)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.4ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 1.2ms | Allocations: 409)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.5ms | Allocations: 201)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 67)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.4ms | Allocations: 607)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-04 10:42:18 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 10:42:18 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 10:42:18 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 181)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 10:42:18 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 10:42:18 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 10:42:18 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 10:42:18 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-04 10:42:18 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 10:42:18 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-04 10:42:18 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 166)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-04 10:42:18 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 10:42:18 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-04 10:42:18 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering test/dummy/README.rdoc
Rendered test/dummy/README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 166)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 10:42:18 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-04 10:42:18 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 10:42:18 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.7ms | Allocations: 812)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.4ms | Allocations: 225)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.2ms | Allocations: 700)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 76)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.7ms | Allocations: 340)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.1ms | Allocations: 71)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.2ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.7ms | Allocations: 409)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 67)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 61)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 48)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 610)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 226)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 361)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.6ms | Allocations: 46)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 69)
Completed 200 OK in 1ms (Views: 1.1ms | Allocations: 557)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 1.1ms | Allocations: 46)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 376)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 182)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 450)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 171)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 166)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 278)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.1ms | Allocations: 63)
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 328)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 181)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 324)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 320)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 131)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 10:42:28 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.6ms | Allocations: 234)
Completed 200 OK in 5ms (Views: 4.5ms | Allocations: 1766)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 78)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 325)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 50)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 357)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.4ms | Allocations: 71)
Completed 200 OK in 2ms (Views: 1.6ms | Allocations: 607)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 182)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 320)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:17:09 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 181)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.8ms | Allocations: 225)
Rendered test/calling_partial_with_layout.html.erb (Duration: 2.1ms | Allocations: 702)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.4ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 1.2ms | Allocations: 409)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.5ms | Allocations: 626)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.1ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 67)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.8ms | Allocations: 266)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 377)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.1ms | Allocations: 63)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 328)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 278)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 124)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 173)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 273)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 46)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 450)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 166)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 47)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 49)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 61)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.6ms | Allocations: 1259)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 166)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.5ms | Allocations: 229)
Completed 200 OK in 2ms (Views: 1.9ms | Allocations: 932)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 1.9ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 75)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 319)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.6ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 362)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.5ms | Allocations: 46)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 69)
Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 557)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.9ms | Allocations: 46)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 279)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.1ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 376)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 182)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.3ms | Allocations: 149)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 445)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 182)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_absolute_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 171)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 181)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:17:41 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:17:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:17:41 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-04 15:17:41 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:17:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:17:41 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-04 15:17:41 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 320)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:17:41 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-04 15:17:42 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:17:42 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-04 15:17:42 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:17:42 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-04 15:17:42 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 324)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:17:42 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:17:42 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:17:42 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-04 15:17:42 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:17:42 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.2ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.7ms | Allocations: 409)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.4ms | Allocations: 225)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.2ms | Allocations: 700)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.2ms | Allocations: 626)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.4ms | Allocations: 182)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 67)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 48)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 48)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 62)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 48)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.2ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 1.1ms | Allocations: 576)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 76)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.7ms | Allocations: 375)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.4ms | Allocations: 225)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.3ms | Allocations: 700)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 67)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.2ms | Allocations: 607)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.1ms | Allocations: 71)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 610)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 232)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 369)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 604)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 182)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 324)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:18:10 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.1ms | Allocations: 63)
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 328)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 278)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 124)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 173)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 273)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 130)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 1.1ms | Allocations: 450)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 166)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 376)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 47)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 63)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 47)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.5ms | Allocations: 232)
Completed 200 OK in 4ms (Views: 3.7ms | Allocations: 1751)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 357)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 603)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 324)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 78)
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 324)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 182)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:20:38 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 124)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 173)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 46)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 273)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 185)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 450)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 166)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 130)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.3ms | Allocations: 149)
Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 445)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 182)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 278)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.1ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 376)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.2ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.7ms | Allocations: 409)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.4ms | Allocations: 225)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.2ms | Allocations: 700)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 67)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.4ms | Allocations: 201)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.2ms | Allocations: 611)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.7ms | Allocations: 234)
Completed 200 OK in 5ms (Views: 5.4ms | Allocations: 1765)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 78)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 325)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 50)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 182)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 356)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 1.1ms | Allocations: 561)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 182)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 124)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 46)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 173)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 46)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 273)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 185)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 376)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 182)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 450)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 166)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.3ms | Allocations: 149)
Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 445)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 131)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 181)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 324)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 320)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 181)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 130)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 185)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:41:23 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.5ms | Allocations: 225)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.5ms | Allocations: 700)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.4ms | Allocations: 201)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.2ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.8ms | Allocations: 409)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.3ms | Allocations: 607)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.1ms | Allocations: 26)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 88)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 67)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 48)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 48)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.8ms | Allocations: 407)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.9ms | Allocations: 892)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.2ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.4ms | Allocations: 668)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.2ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.8ms | Allocations: 423)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.1ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 93)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.1ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.2ms | Allocations: 93)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.2ms | Allocations: 71)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 73)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 76)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.7ms | Allocations: 353)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 682)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 49)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 238)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 382)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 187)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 1.3ms | Allocations: 615)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 187)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 328)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-04 15:42:26 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 283)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.1ms | Allocations: 69)
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 347)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 389)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 187)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 129)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 123)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 178)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 278)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 45)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 47)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 46)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 3ms (Views: 2.5ms | Allocations: 1257)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 171)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 8)
Completed 200 OK in 2ms (Views: 2.3ms | Allocations: 1257)
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 171)
-------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_with_underline_prefix
-------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.3ms | Allocations: 106)
Rendered test/render_partial_inside_directory.html.erb (Duration: 1.7ms | Allocations: 595)
-----------------------------------------------------
RenderTemplateTest: test_supports_specifying_partials
-----------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.9ms | Allocations: 408)
Rendered test/calling_partial_with_layout.html.erb (Duration: 1.6ms | Allocations: 723)
----------------------------------------------------------------------
RenderTemplateTest: test_supports_different_locals_on_the_same_partial
----------------------------------------------------------------------
Rendering test/render_two_partials.html.erb
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 79)
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 76)
Rendered test/render_two_partials.html.erb (Duration: 1.2ms | Allocations: 670)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(failing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.1ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 93)
-------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_locals_(passing)
-------------------------------------------------------------
Rendering test/calling_partial_with_layout.html.erb
Rendered test/_partial_for_use_in_layout.html.erb (Duration: 0.0ms | Allocations: 38)
Rendered test/calling_partial_with_layout.html.erb (Duration: 0.1ms | Allocations: 93)
----------------------------------------------------------------------------------------
RenderTemplateTest: test_raises_descriptive_error_message_when_template_was_not_rendered
----------------------------------------------------------------------------------------
Rendering test/hello_world_with_partial.html.erb
Rendered test/_partial.html.erb (Duration: 0.1ms | Allocations: 76)
Rendered test/hello_world_with_partial.html.erb (Duration: 0.8ms | Allocations: 354)
----------------------------------------------------------------------------------------------------------------
RenderTemplateTest: test_specifying_locals_works_when_the_partial_is_inside_a_directory_without_underline_prefix
----------------------------------------------------------------------------------------------------------------
Rendering test/render_partial_inside_directory.html.erb
Rendered test/_directory/_partial_with_locales.html.erb (Duration: 0.1ms | Allocations: 15)
Rendered test/render_partial_inside_directory.html.erb (Duration: 0.1ms | Allocations: 73)
--------------------------------------------------------------------
RenderTemplateTest: test_supports_specifying_templates_with_a_Regexp
--------------------------------------------------------------------
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.2ms | Allocations: 71)
----------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_no_layout
----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 1.1ms | Allocations: 692)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_symbol
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 380)
--------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_passes_when_no_template_rendered
--------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 49)
----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_file_with_relative_path_success
----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.4ms | Allocations: 72)
Completed 200 OK in 2ms (Views: 1.5ms | Allocations: 576)
-----------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_invalid_hash_keys_raises_argument_error
-----------------------------------------------------------------------------------
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_locals_option_to_assert_template_is_not_supported
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_string
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 191)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout
------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
--------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_wrong_layout
--------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_symbol
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_repeated_name_in_path
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template_repeating_in_path as HTML
Rendering test/hello/hello.html.erb
Rendered test/hello/hello.html.erb (Duration: 0.2ms | Allocations: 71)
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 390)
-------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_template_rendered
-------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 191)
-----------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout
-----------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_symbol
------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-----------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_expecting_not_known_layout
-----------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_correct_layout_without_layouts_prefix
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_nil_fails_when_template_rendered
----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 190)
-----------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_assert_template_reset_between_requests
-----------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 14)
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 234)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 45)
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 7)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 178)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 45)
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 18)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 278)
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 45)
----------------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_with_empty_string_fails_when_no_template_rendered
----------------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string_that_matches
-------------------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_fails_with_incorrect_string
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 190)
------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passed_with_no_layout_false
------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
---------------------------------------------------
TemplateAssertionsControllerTest: test_with_partial
---------------------------------------------------
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 129)
---------------------------------------------------------------------
TemplateAssertionsControllerTest: test_passes_with_layout_and_partial
---------------------------------------------------------------------
Processing by TemplateAssertionsController#render_with_layout_and_partial as HTML
Rendering test/hello_world_with_partial.html.erb within layouts/standard
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 15)
Rendered test/hello_world_with_partial.html.erb within layouts/standard (Duration: 0.1ms | Allocations: 69)
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 349)
--------------------------------------------------------
TemplateAssertionsControllerTest: test_with_file_failure
--------------------------------------------------------
Processing by TemplateAssertionsController#render_file_absolute_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.1ms | Allocations: 5)
Completed 200 OK in 1ms (Views: 1.3ms | Allocations: 471)
----------------------------------------
AssignsControllerTest: test_view_assigns
----------------------------------------
Processing by ViewAssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 46)
-----------------------------------
AssignsControllerTest: test_assigns
-----------------------------------
Processing by AssignsController#test_assigns as HTML
Completed 200 OK in 0ms (Allocations: 47)
------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests_when_opening_a_session
------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 328)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests
----------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
---------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_partial_reset_between_requests_when_opening_a_session
---------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_partial" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_with_partial as HTML
Rendered test/_partial.html.erb (Duration: 0.0ms | Allocations: 17)
Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 129)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
----------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests_when_opening_a_session
----------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
---------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests
---------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_cookies_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
-------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_file_reset_between_requests
-------------------------------------------------------------------
Started GET "/template_assertions/render_file_relative_path" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_file_relative_path as HTML
Rendering README.rdoc
Rendered README.rdoc (Duration: 0.0ms | Allocations: 20)
Completed 200 OK in 0ms (Views: 0.4ms | Allocations: 324)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
--------------------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_layout_reset_between_requests_when_opening_a_session
--------------------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 186)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
-------------------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_assigns_do_not_reset_template_assertion
-------------------------------------------------------------------------------
Started GET "/template_assertions/render_with_layout" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_with_layout as HTML
Rendering test/hello_world.html.erb within layouts/standard
Rendered test/hello_world.html.erb within layouts/standard (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 186)
-----------------------------------------------------------------------
TemplateAssertionsIntegrationTest: test_template_reset_between_requests
-----------------------------------------------------------------------
Started GET "/template_assertions/render_with_template" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_with_template as HTML
Rendering test/hello_world.html.erb
Rendered test/hello_world.html.erb (Duration: 0.0ms | Allocations: 10)
Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 190)
Started GET "/template_assertions/render_nothing" for 127.0.0.1 at 2020-05-05 15:47:08 -0400
Processing by TemplateAssertionsController#render_nothing as HTML
Completed 200 OK in 0ms (Allocations: 45)
rails-controller-testing-1.0.5/test/dummy/Rakefile 0000644 0000041 0000041 00000000371 13704151255 022276 0 ustar www-data www-data # Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
require File.expand_path('../config/application', __FILE__)
Rails.application.load_tasks
rails-controller-testing-1.0.5/test/dummy/README.rdoc 0000644 0000041 0000041 00000000736 13704151255 022444 0 ustar www-data www-data == README
This README would normally document whatever steps are necessary to get the
application up and running.
Things you may want to cover:
* Ruby version
* System dependencies
* Configuration
* Database creation
* Database initialization
* How to run the test suite
* Services (job queues, cache servers, search engines, etc.)
* Deployment instructions
* ...
Please feel free to use a different markup language if you do not plan to run
rake doc:app.
rails-controller-testing-1.0.5/test/dummy/config/ 0000755 0000041 0000041 00000000000 13704151255 022075 5 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/config/boot.rb 0000644 0000041 0000041 00000000361 13704151255 023365 0 ustar www-data www-data # Set up gems listed in the Gemfile.
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
$LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
rails-controller-testing-1.0.5/test/dummy/config/routes.rb 0000644 0000041 0000041 00000003137 13704151255 023747 0 ustar www-data www-data Rails.application.routes.draw do
get ':controller(/:action)'
# The priority is based upon order of creation: first created -> highest priority.
# See how all your routes lay out with "rake routes".
# You can have the root of your site routed with "root"
# root 'welcome#index'
# Example of regular route:
# get 'products/:id' => 'catalog#view'
# Example of named route that can be invoked with purchase_url(id: product.id)
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
# Example resource route (maps HTTP verbs to controller actions automatically):
# resources :products
# Example resource route with options:
# resources :products do
# member do
# get 'short'
# post 'toggle'
# end
#
# collection do
# get 'sold'
# end
# end
# Example resource route with sub-resources:
# resources :products do
# resources :comments, :sales
# resource :seller
# end
# Example resource route with more complex sub-resources:
# resources :products do
# resources :comments
# resources :sales do
# get 'recent', on: :collection
# end
# end
# Example resource route with concerns:
# concern :toggleable do
# post 'toggle'
# end
# resources :posts, concerns: :toggleable
# resources :photos, concerns: :toggleable
# Example resource route within a namespace:
# namespace :admin do
# # Directs /admin/products/* to Admin::ProductsController
# # (app/controllers/admin/products_controller.rb)
# resources :products
# end
end
rails-controller-testing-1.0.5/test/dummy/config/secrets.yml 0000644 0000041 0000041 00000001704 13704151255 024272 0 ustar www-data www-data # Be sure to restart your server when you modify this file.
# Your secret key is used for verifying the integrity of signed cookies.
# If you change this key, all old signed cookies will become invalid!
# Make sure the secret is at least 30 characters and all random,
# no regular words or you'll be exposed to dictionary attacks.
# You can use `rake secret` to generate a secure secret key.
# Make sure the secrets in this file are kept private
# if you're sharing your code publicly.
development:
secret_key_base: 0c98f262d18c62158146949b3d392a1f04abbb2cdcbcf90ad5b1ad6f8d98307a6aaeccb5508086ed315dce930865e24f46ead5fc2aa3152fa735d14d2e3161de
test:
secret_key_base: 42f2032a64ab0798dc992d01d1f4637dc4c827a585cac2fbe4066a9d06a8dfdd1b4690761a4095e33f2a54cbc8e3816fb88aac44cb834796ac2a3524f8d2c0a3
# Do not keep production secrets in the repository,
# instead read values from the environment.
production:
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
rails-controller-testing-1.0.5/test/dummy/config/initializers/ 0000755 0000041 0000041 00000000000 13704151255 024603 5 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/config/initializers/backtrace_silencers.rb 0000644 0000041 0000041 00000000624 13704151255 031120 0 ustar www-data www-data # Be sure to restart your server when you modify this file.
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
# Rails.backtrace_cleaner.remove_silencers!
rails-controller-testing-1.0.5/test/dummy/config/initializers/inflections.rb 0000644 0000041 0000041 00000001207 13704151255 027445 0 ustar www-data www-data # Be sure to restart your server when you modify this file.
# Add new inflection rules using the following format. Inflections
# are locale specific, and you may define rules for as many different
# locales as you wish. All of these examples are active by default:
# ActiveSupport::Inflector.inflections(:en) do |inflect|
# inflect.plural /^(ox)$/i, '\1en'
# inflect.singular /^(ox)en/i, '\1'
# inflect.irregular 'person', 'people'
# inflect.uncountable %w( fish sheep )
# end
# These inflection rules are supported but not enabled by default:
# ActiveSupport::Inflector.inflections(:en) do |inflect|
# inflect.acronym 'RESTful'
# end
rails-controller-testing-1.0.5/test/dummy/config/initializers/session_store.rb 0000644 0000041 0000041 00000000211 13704151255 030021 0 ustar www-data www-data # Be sure to restart your server when you modify this file.
Rails.application.config.session_store :cookie_store, key: '_dummy_session'
rails-controller-testing-1.0.5/test/dummy/config/initializers/filter_parameter_logging.rb 0000644 0000041 0000041 00000000302 13704151255 032156 0 ustar www-data www-data # Be sure to restart your server when you modify this file.
# Configure sensitive parameters which will be filtered from the log file.
Rails.application.config.filter_parameters += [:password]
rails-controller-testing-1.0.5/test/dummy/config/initializers/cookies_serializer.rb 0000644 0000041 0000041 00000000201 13704151255 031006 0 ustar www-data www-data # Be sure to restart your server when you modify this file.
Rails.application.config.action_dispatch.cookies_serializer = :json
rails-controller-testing-1.0.5/test/dummy/config/initializers/mime_types.rb 0000644 0000041 0000041 00000000234 13704151255 027302 0 ustar www-data www-data # Be sure to restart your server when you modify this file.
# Add new mime types for use in respond_to blocks:
# Mime::Type.register "text/richtext", :rtf
rails-controller-testing-1.0.5/test/dummy/config/initializers/assets.rb 0000644 0000041 0000041 00000000750 13704151255 026434 0 ustar www-data www-data # Be sure to restart your server when you modify this file.
# Version of your assets, change this if you want to expire all your assets.
# Rails.application.config.assets.version = '1.0'
# Add additional assets to the asset load path
# Rails.application.config.assets.paths << Emoji.images_path
# Precompile additional assets.
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
# Rails.application.config.assets.precompile += %w( search.js )
rails-controller-testing-1.0.5/test/dummy/config/initializers/wrap_parameters.rb 0000644 0000041 0000041 00000001005 13704151255 030320 0 ustar www-data www-data # Be sure to restart your server when you modify this file.
# This file contains settings for ActionController::ParamsWrapper which
# is enabled by default.
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
ActiveSupport.on_load(:action_controller) do
wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
end
# To enable root element in JSON for ActiveRecord objects.
# ActiveSupport.on_load(:active_record) do
# self.include_root_in_json = true
# end
rails-controller-testing-1.0.5/test/dummy/config/application.rb 0000644 0000041 0000041 00000001601 13704151255 024723 0 ustar www-data www-data require File.expand_path('../boot', __FILE__)
require 'rails/all'
Bundler.require(*Rails.groups)
require "rails-controller-testing"
module Dummy
class Application < Rails::Application
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
# config.time_zone = 'Central Time (US & Canada)'
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
# config.i18n.default_locale = :de
end
end
rails-controller-testing-1.0.5/test/dummy/config/locales/ 0000755 0000041 0000041 00000000000 13704151255 023517 5 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/config/locales/en.yml 0000644 0000041 0000041 00000001172 13704151255 024645 0 ustar www-data www-data # Files in the config/locales directory are used for internationalization
# and are automatically loaded by Rails. If you want to use locales other
# than English, add the necessary files in this directory.
#
# To use the locales, use `I18n.t`:
#
# I18n.t 'hello'
#
# In views, this is aliased to just `t`:
#
# <%= t('hello') %>
#
# To use a different locale, set it with `I18n.locale`:
#
# I18n.locale = :es
#
# This would use the information in config/locales/es.yml.
#
# To learn more, please read the Rails Internationalization guide
# available at http://guides.rubyonrails.org/i18n.html.
en:
hello: "Hello world"
rails-controller-testing-1.0.5/test/dummy/config/environment.rb 0000644 0000041 0000041 00000000226 13704151255 024766 0 ustar www-data www-data # Load the Rails application.
require File.expand_path('../application', __FILE__)
# Initialize the Rails application.
Rails.application.initialize!
rails-controller-testing-1.0.5/test/dummy/config/environments/ 0000755 0000041 0000041 00000000000 13704151255 024624 5 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/config/environments/test.rb 0000644 0000041 0000041 00000003056 13704151255 026134 0 ustar www-data www-data Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# The test environment is used exclusively to run your application's
# test suite. You never need to work with it otherwise. Remember that
# your test database is "scratch space" for the test suite and is wiped
# and recreated between test runs. Don't rely on the data there!
config.cache_classes = true
# Do not eager load code on boot. This avoids loading your whole application
# just for the purpose of running a single test. If you are using a tool that
# preloads Rails for running tests, you may have to set it to true.
config.eager_load = false
# Configure public file server for tests with Cache-Control for performance.
config.public_file_server.enabled = true
config.public_file_server.headers = {
'Cache-Control' => 'public, max-age=3600'
}
# Show full error reports and disable caching.
config.consider_all_requests_local = true
config.action_controller.perform_caching = false
# Raise exceptions instead of rendering exception templates.
config.action_dispatch.show_exceptions = false
# Disable request forgery protection in test environment.
config.action_controller.allow_forgery_protection = false
# Randomize the order test cases are executed.
config.active_support.test_order = :random
# Print deprecation notices to the stderr.
config.active_support.deprecation = :stderr
# Raises error for missing translations
# config.action_view.raise_on_missing_translations = true
end
rails-controller-testing-1.0.5/test/dummy/config/environments/production.rb 0000644 0000041 0000041 00000006350 13704151255 027343 0 ustar www-data www-data Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# Code is not reloaded between requests.
config.cache_classes = true
# Eager load code on boot. This eager loads most of Rails and
# your application in memory, allowing both threaded web servers
# and those relying on copy on write to perform better.
# Rake tasks automatically ignore this option for performance.
config.eager_load = true
# Full error reports are disabled and caching is turned on.
config.consider_all_requests_local = false
config.action_controller.perform_caching = true
# Enable Rack::Cache to put a simple HTTP cache in front of your application
# Add `rack-cache` to your Gemfile before enabling this.
# For large-scale production use, consider using a caching reverse proxy like
# NGINX, varnish or squid.
# config.action_dispatch.rack_cache = true
# Disable serving static files from the `/public` folder by default since
# Apache or NGINX already handles this.
config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
# Compress JavaScripts and CSS.
config.assets.js_compressor = :uglifier
# config.assets.css_compressor = :sass
# Do not fallback to assets pipeline if a precompiled asset is missed.
config.assets.compile = false
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
# yet still be able to expire them through the digest params.
config.assets.digest = true
# `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
# Specifies the header that your server uses for sending files.
# config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
# config.force_ssl = true
# Use the lowest log level to ensure availability of diagnostic information
# when problems arise.
config.log_level = :debug
# Prepend all log lines with the following tags.
# config.log_tags = [ :subdomain, :uuid ]
# Use a different logger for distributed setups.
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
# Use a different cache store in production.
# config.cache_store = :mem_cache_store
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
# config.action_controller.asset_host = 'http://assets.example.com'
# Ignore bad email addresses and do not raise email delivery errors.
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
# config.action_mailer.raise_delivery_errors = false
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
# the I18n.default_locale when a translation cannot be found).
config.i18n.fallbacks = true
# Send deprecation notices to registered listeners.
config.active_support.deprecation = :notify
# Use default logging formatter so that PID and timestamp are not suppressed.
config.log_formatter = ::Logger::Formatter.new
# Do not dump schema after migrations.
config.active_record.dump_schema_after_migration = false
end
rails-controller-testing-1.0.5/test/dummy/config/environments/development.rb 0000644 0000041 0000041 00000002553 13704151255 027500 0 ustar www-data www-data Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# In the development environment your application's code is reloaded on
# every request. This slows down response time but is perfect for development
# since you don't have to restart the web server when you make code changes.
config.cache_classes = false
# Do not eager load code on boot.
config.eager_load = false
# Show full error reports and disable caching.
config.consider_all_requests_local = true
config.action_controller.perform_caching = false
# Print deprecation notices to the Rails logger.
config.active_support.deprecation = :log
# Debug mode disables concatenation and preprocessing of assets.
# This option may cause significant delays in view rendering with a large
# number of complex assets.
config.assets.debug = true
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
# yet still be able to expire them through the digest params.
config.assets.digest = true
# Adds additional error checking when serving assets at runtime.
# Checks for improperly declared sprockets dependencies.
# Raises helpful error messages.
config.assets.raise_runtime_errors = true
# Raises error for missing translations
# config.action_view.raise_on_missing_translations = true
end
rails-controller-testing-1.0.5/test/dummy/config/database.yml 0000644 0000041 0000041 00000001050 13704151255 024360 0 ustar www-data www-data # SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
default: &default
adapter: sqlite3
pool: 5
timeout: 5000
development:
<<: *default
database: db/development.sqlite3
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
<<: *default
database: db/test.sqlite3
production:
<<: *default
database: db/production.sqlite3
rails-controller-testing-1.0.5/test/dummy/public/ 0000755 0000041 0000041 00000000000 13704151255 022106 5 ustar www-data www-data rails-controller-testing-1.0.5/test/dummy/public/422.html 0000644 0000041 0000041 00000003013 13704151255 023300 0 ustar www-data www-data
The change you wanted was rejected (422)
The change you wanted was rejected.
Maybe you tried to change something you didn't have access to.
If you are the application owner check the logs for more information.
rails-controller-testing-1.0.5/test/dummy/public/500.html 0000644 0000041 0000041 00000002705 13704151255 023304 0 ustar www-data www-data
We're sorry, but something went wrong (500)
We're sorry, but something went wrong.
If you are the application owner check the logs for more information.
rails-controller-testing-1.0.5/test/dummy/public/404.html 0000644 0000041 0000041 00000003034 13704151255 023303 0 ustar www-data www-data
The page you were looking for doesn't exist (404)
The page you were looking for doesn't exist.
You may have mistyped the address or the page may have moved.
If you are the application owner check the logs for more information.
rails-controller-testing-1.0.5/test/dummy/public/favicon.ico 0000644 0000041 0000041 00000000000 13704151255 024215 0 ustar www-data www-data rails-controller-testing-1.0.5/test/integration/ 0000755 0000041 0000041 00000000000 13704151255 022020 5 ustar www-data www-data rails-controller-testing-1.0.5/test/integration/template_assertions_test.rb 0000644 0000041 0000041 00000005124 13704151255 027473 0 ustar www-data www-data require 'test_helper'
class TemplateAssertionsIntegrationTest < ActionDispatch::IntegrationTest
def test_template_reset_between_requests
get '/template_assertions/render_with_template'
assert_template 'test/hello_world'
get '/template_assertions/render_nothing'
assert_template nil
end
def test_partial_reset_between_requests
get '/template_assertions/render_with_partial'
assert_template partial: 'test/_partial'
get '/template_assertions/render_nothing'
assert_template partial: nil
end
def test_layout_reset_between_requests
get '/template_assertions/render_with_layout'
assert_template layout: 'layouts/standard'
get '/template_assertions/render_nothing'
assert_template layout: nil
end
def test_file_reset_between_requests
get '/template_assertions/render_file_relative_path'
assert_template file: 'README.rdoc'
get '/template_assertions/render_nothing'
assert_template file: nil
end
def test_template_reset_between_requests_when_opening_a_session
open_session do |session|
session.get '/template_assertions/render_with_template'
session.assert_template 'test/hello_world'
session.get '/template_assertions/render_nothing'
session.assert_template nil
end
end
def test_partial_reset_between_requests_when_opening_a_session
open_session do |session|
session.get '/template_assertions/render_with_partial'
session.assert_template partial: 'test/_partial'
session.get '/template_assertions/render_nothing'
session.assert_template partial: nil
end
end
def test_layout_reset_between_requests_when_opening_a_session
open_session do |session|
session.get '/template_assertions/render_with_layout'
session.assert_template layout: 'layouts/standard'
session.get '/template_assertions/render_nothing'
session.assert_template layout: nil
end
end
def test_file_reset_between_requests_when_opening_a_session
open_session do |session|
session.get '/template_assertions/render_file_relative_path'
session.assert_template file: 'README.rdoc'
session.get '/template_assertions/render_nothing'
session.assert_template file: nil
end
end
def test_assigns_do_not_reset_template_assertion
get '/template_assertions/render_with_layout'
assert_equal 'hello', assigns(:variable_for_layout)
assert_template layout: 'layouts/standard'
end
def test_cookies_do_not_reset_template_assertion
get '/template_assertions/render_with_layout'
cookies
assert_template layout: 'layouts/standard'
end
end
rails-controller-testing-1.0.5/test/test_helper.rb 0000644 0000041 0000041 00000001221 13704151255 022334 0 ustar www-data www-data # Configure Rails Environment
ENV["RAILS_ENV"] = "test"
require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
require "rails/test_help"
require 'rails-controller-testing'
# Filter out Minitest backtrace while allowing backtrace from other libraries
# to be shown.
Minitest.backtrace_filter = Minitest::BacktraceFilter.new
# Load support files
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
# Load fixtures from the engine
if ActiveSupport::TestCase.respond_to?(:fixture_path=)
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
ActiveSupport::TestCase.fixtures :all
end
rails-controller-testing-1.0.5/README.md 0000644 0000041 0000041 00000004345 13704151255 020003 0 ustar www-data www-data # Rails::Controller::Testing
This gem brings back `assigns` to your controller tests as well as `assert_template`
to both controller and integration tests.
Note: This gem is only useful once `assigns` and `assert_template` have been
removed from Rails.
## Installation
Add this line to your application's Gemfile:
gem 'rails-controller-testing'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rails-controller-testing
### RSpec
See https://github.com/rspec/rspec-rails/issues/1393.
rspec-rails automatically integrates with this gem since version `3.5.0`.
Adding the gem to your `Gemfile` is sufficient.
If you use an older version of rspec-rails, you can manually include the
modules in your `rails_helper`.
```ruby
RSpec.configure do |config|
[:controller, :view, :request].each do |type|
config.include ::Rails::Controller::Testing::TestProcess, :type => type
config.include ::Rails::Controller::Testing::TemplateAssertions, :type => type
config.include ::Rails::Controller::Testing::Integration, :type => type
end
end
```
## Outside Rails
For projects and gems using controller tests outside of a Rails application,
invoke the `Rails::Controller::Testing.install` method inside your test suite
setup to include the required modules on controller test cases.
```ruby
# test/test_helper.rb
require 'rails-controller-testing'
Rails::Controller::Testing.install
```
## Usage
### assigns
`assigns` allows you to access the instance variables that have been passed to
your views.
```ruby
class PostsController < ActionController::Base
def index
@posts = Post.all
end
end
class PostControllerTest < ActionController::TestCase
def test_index
get :index
assert_equal Post.all, assigns(:posts)
end
end
```
### assert_template
`assert_template` allows to you assert that certain templates have been rendered.
```ruby
class PostControllerTest < ActionController::TestCase
def test_index
get :index
assert_template 'posts/index'
end
end
```
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request
rails-controller-testing-1.0.5/LICENSE 0000644 0000041 0000041 00000002047 13704151255 017526 0 ustar www-data www-data Copyright 2015-2016 Alan Guo Xiang Tan
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
rails-controller-testing-1.0.5/Rakefile 0000644 0000041 0000041 00000000525 13704151255 020165 0 ustar www-data www-data begin
require 'bundler/setup'
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
Bundler::GemHelper.install_tasks
require 'rake/testtask'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/**/*_test.rb'
t.verbose = false
end
task default: :test
rails-controller-testing-1.0.5/lib/ 0000755 0000041 0000041 00000000000 13704151255 017264 5 ustar www-data www-data rails-controller-testing-1.0.5/lib/rails-controller-testing.rb 0000644 0000041 0000041 00000000225 13704151255 024556 0 ustar www-data www-data require 'rails/controller/testing'
require 'rails/controller/testing/railtie' if defined?(Rails::Railtie)
require 'rails/controller/testing/version'
rails-controller-testing-1.0.5/lib/rails/ 0000755 0000041 0000041 00000000000 13704151255 020376 5 ustar www-data www-data rails-controller-testing-1.0.5/lib/rails/controller/ 0000755 0000041 0000041 00000000000 13704151255 022561 5 ustar www-data www-data rails-controller-testing-1.0.5/lib/rails/controller/testing/ 0000755 0000041 0000041 00000000000 13704151255 024236 5 ustar www-data www-data rails-controller-testing-1.0.5/lib/rails/controller/testing/version.rb 0000644 0000041 0000041 00000000136 13704151255 026250 0 ustar www-data www-data module Rails
module Controller
module Testing
VERSION = "1.0.5"
end
end
end
rails-controller-testing-1.0.5/lib/rails/controller/testing/railtie.rb 0000644 0000041 0000041 00000000230 13704151255 026207 0 ustar www-data www-data class Rails::Controller::Testing::Railtie < Rails::Railtie
initializer "rails_controller_testing" do
Rails::Controller::Testing.install
end
end
rails-controller-testing-1.0.5/lib/rails/controller/testing/test_process.rb 0000644 0000041 0000041 00000000572 13704151255 027304 0 ustar www-data www-data require 'active_support/core_ext/hash/indifferent_access'
module Rails
module Controller
module Testing
module TestProcess
def assigns(key = nil)
assigns = {}.with_indifferent_access
@controller.view_assigns.each { |k, v| assigns.regular_writer(k, v) }
key.nil? ? assigns : assigns[key]
end
end
end
end
end
rails-controller-testing-1.0.5/lib/rails/controller/testing/template_assertions.rb 0000644 0000041 0000041 00000017030 13704151255 030651 0 ustar www-data www-data require 'active_support/concern'
module Rails
module Controller
module Testing
module TemplateAssertions
extend ActiveSupport::Concern
included do
setup :setup_subscriptions
teardown :teardown_subscriptions
end
RENDER_TEMPLATE_INSTANCE_VARIABLES = %w{partials templates layouts files}.freeze
def setup_subscriptions
RENDER_TEMPLATE_INSTANCE_VARIABLES.each do |instance_variable|
instance_variable_set("@_#{instance_variable}", Hash.new(0))
end
@_subscribers = []
@_subscribers << ActiveSupport::Notifications.subscribe("render_template.action_view") do |_name, _start, _finish, _id, payload|
path = payload[:layout]
if path
@_layouts[path] += 1
if path =~ /^layouts\/(.*)/
@_layouts[$1] += 1
end
end
end
@_subscribers << ActiveSupport::Notifications.subscribe("!render_template.action_view") do |_name, _start, _finish, _id, payload|
if virtual_path = payload[:virtual_path]
partial = virtual_path =~ /^.*\/_[^\/]*$/
if partial
@_partials[virtual_path] += 1
@_partials[virtual_path.split("/").last] += 1
end
@_templates[virtual_path] += 1
else
path = payload[:identifier]
if path
@_files[path] += 1
@_files[path.split("/").last] += 1
end
end
end
end
def teardown_subscriptions
return unless defined?(@_subscribers)
@_subscribers.each do |subscriber|
ActiveSupport::Notifications.unsubscribe(subscriber)
end
end
def process(*, **)
reset_template_assertion
super
end
def reset_template_assertion
RENDER_TEMPLATE_INSTANCE_VARIABLES.each do |instance_variable|
ivar_name = "@_#{instance_variable}"
if instance_variable_defined?(ivar_name)
instance_variable_get(ivar_name).clear
end
end
end
# Asserts that the request was rendered with the appropriate template file or partials.
#
# # assert that the "new" view template was rendered
# assert_template "new"
#
# # assert that the exact template "admin/posts/new" was rendered
# assert_template %r{\Aadmin/posts/new\Z}
#
# # assert that the layout 'admin' was rendered
# assert_template layout: 'admin'
# assert_template layout: 'layouts/admin'
# assert_template layout: :admin
#
# # assert that no layout was rendered
# assert_template layout: nil
# assert_template layout: false
#
# # assert that the "_customer" partial was rendered twice
# assert_template partial: '_customer', count: 2
#
# # assert that no partials were rendered
# assert_template partial: false
#
# # assert that a file was rendered
# assert_template file: "README.rdoc"
#
# # assert that no file was rendered
# assert_template file: nil
# assert_template file: false
#
# In a view test case, you can also assert that specific locals are passed
# to partials:
#
# # assert that the "_customer" partial was rendered with a specific object
# assert_template partial: '_customer', locals: { customer: @customer }
def assert_template(options = {}, message = nil)
# Force body to be read in case the template is being streamed.
response.body
case options
when NilClass, Regexp, String, Symbol
options = options.to_s if Symbol === options
rendered = @_templates
msg = message || sprintf("expecting <%s> but rendering with <%s>",
options.inspect, rendered.keys)
matches_template =
case options
when String
!options.empty? && rendered.any? do |t, num|
options_splited = options.split(File::SEPARATOR)
t_splited = t.split(File::SEPARATOR)
t_splited.last(options_splited.size) == options_splited
end
when Regexp
rendered.any? { |t,num| t.match(options) }
when NilClass
rendered.blank?
end
assert matches_template, msg
when Hash
options.assert_valid_keys(:layout, :partial, :locals, :count, :file)
if options.key?(:layout)
expected_layout = options[:layout]
msg = message || sprintf("expecting layout <%s> but action rendered <%s>",
expected_layout, @_layouts.keys)
case expected_layout
when String, Symbol
assert_includes @_layouts.keys, expected_layout.to_s, msg
when Regexp
assert(@_layouts.keys.any? {|l| l =~ expected_layout }, msg)
when nil, false
assert(@_layouts.empty?, msg)
else
raise ArgumentError, "assert_template only accepts a String, Symbol, Regexp, nil or false for :layout"
end
end
if options[:file]
assert_includes @_files.keys, options[:file]
elsif options.key?(:file)
assert @_files.blank?, "expected no files but #{@_files.keys} was rendered"
end
if expected_partial = options[:partial]
if expected_locals = options[:locals]
if defined?(@_rendered_views)
view = expected_partial.to_s.sub(/^_/, '').sub(/\/_(?=[^\/]+\z)/, '/')
partial_was_not_rendered_msg = "expected %s to be rendered but it was not." % view
assert_includes @_rendered_views.rendered_views, view, partial_was_not_rendered_msg
msg = 'expecting %s to be rendered with %s but was with %s' % [expected_partial,
expected_locals,
@_rendered_views.locals_for(view)]
assert(@_rendered_views.view_rendered?(view, options[:locals]), msg)
else
warn "the :locals option to #assert_template is only supported in a ActionView::TestCase"
end
elsif expected_count = options[:count]
actual_count = @_partials[expected_partial]
msg = message || sprintf("expecting %s to be rendered %s time(s) but rendered %s time(s)",
expected_partial, expected_count, actual_count)
assert(actual_count == expected_count.to_i, msg)
else
msg = message || sprintf("expecting partial <%s> but action rendered <%s>",
options[:partial], @_partials.keys)
assert_includes @_partials, expected_partial, msg
end
elsif options.key?(:partial)
assert @_partials.empty?,
"Expected no partials to be rendered"
end
else
raise ArgumentError, "assert_template only accepts a String, Symbol, Hash, Regexp, or nil"
end
end
end
end
end
end
rails-controller-testing-1.0.5/lib/rails/controller/testing/integration.rb 0000644 0000041 0000041 00000001027 13704151255 027106 0 ustar www-data www-data require 'action_pack'
module Rails
module Controller
module Testing
module Integration
http_verbs = %w(get post patch put head delete)
if ActionPack.version < Gem::Version.new('5.1')
http_verbs.push('xhr', 'xml_http_request', 'get_via_redirect', 'post_via_redirect')
end
http_verbs.each do |method|
define_method(method) do |*args, **kwargs|
reset_template_assertion
super(*args, **kwargs)
end
end
end
end
end
end
rails-controller-testing-1.0.5/lib/rails/controller/testing.rb 0000644 0000041 0000041 00000001572 13704151255 024570 0 ustar www-data www-data require 'active_support/lazy_load_hooks'
require 'rails/controller/testing/test_process'
require 'rails/controller/testing/integration'
require 'rails/controller/testing/template_assertions'
module Rails
module Controller
module Testing
def self.install
ActiveSupport.on_load(:action_controller_test_case) do
include Rails::Controller::Testing::TestProcess
include Rails::Controller::Testing::TemplateAssertions
end
ActiveSupport.on_load(:action_dispatch_integration_test) do
include Rails::Controller::Testing::TemplateAssertions
include Rails::Controller::Testing::Integration
include Rails::Controller::Testing::TestProcess
end
ActiveSupport.on_load(:action_view_test_case) do
include Rails::Controller::Testing::TemplateAssertions
end
end
end
end
end
rails-controller-testing-1.0.5/rails-controller-testing.gemspec 0000644 0000041 0000041 00000016727 13704151255 025046 0 ustar www-data www-data #########################################################
# This file has been automatically generated by gem2tgz #
#########################################################
# -*- encoding: utf-8 -*-
# stub: rails-controller-testing 1.0.5 ruby lib
Gem::Specification.new do |s|
s.name = "rails-controller-testing".freeze
s.version = "1.0.5"
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib".freeze]
s.authors = ["Rails Core Team".freeze]
s.date = "2020-06-23"
s.files = ["LICENSE".freeze, "README.md".freeze, "Rakefile".freeze, "lib/rails-controller-testing.rb".freeze, "lib/rails/controller/testing.rb".freeze, "lib/rails/controller/testing/integration.rb".freeze, "lib/rails/controller/testing/railtie.rb".freeze, "lib/rails/controller/testing/template_assertions.rb".freeze, "lib/rails/controller/testing/test_process.rb".freeze, "lib/rails/controller/testing/version.rb".freeze, "test/controllers/assigns_test.rb".freeze, "test/controllers/template_assertions_test.rb".freeze, "test/dummy/README.rdoc".freeze, "test/dummy/Rakefile".freeze, "test/dummy/app/controllers/assigns_controller.rb".freeze, "test/dummy/app/controllers/template_assertions_controller.rb".freeze, "test/dummy/app/controllers/view_assigns_controller.rb".freeze, "test/dummy/app/helpers/application_helper.rb".freeze, "test/dummy/app/views/layouts/application.html.erb".freeze, "test/dummy/app/views/layouts/standard.html.erb".freeze, "test/dummy/app/views/test/_directory/_partial_with_locales.html.erb".freeze, "test/dummy/app/views/test/_layout_for_partial.html.erb".freeze, "test/dummy/app/views/test/_partial.html.erb".freeze, "test/dummy/app/views/test/_partial_for_use_in_layout.html.erb".freeze, "test/dummy/app/views/test/calling_partial_with_layout.html.erb".freeze, "test/dummy/app/views/test/hello/hello.html.erb".freeze, "test/dummy/app/views/test/hello_world.html.erb".freeze, "test/dummy/app/views/test/hello_world_with_partial.html.erb".freeze, "test/dummy/app/views/test/render_partial_inside_directory.html.erb".freeze, "test/dummy/app/views/test/render_two_partials.html.erb".freeze, "test/dummy/bin/bundle".freeze, "test/dummy/bin/rails".freeze, "test/dummy/bin/rake".freeze, "test/dummy/bin/setup".freeze, "test/dummy/config.ru".freeze, "test/dummy/config/application.rb".freeze, "test/dummy/config/boot.rb".freeze, "test/dummy/config/database.yml".freeze, "test/dummy/config/environment.rb".freeze, "test/dummy/config/environments/development.rb".freeze, "test/dummy/config/environments/production.rb".freeze, "test/dummy/config/environments/test.rb".freeze, "test/dummy/config/initializers/assets.rb".freeze, "test/dummy/config/initializers/backtrace_silencers.rb".freeze, "test/dummy/config/initializers/cookies_serializer.rb".freeze, "test/dummy/config/initializers/filter_parameter_logging.rb".freeze, "test/dummy/config/initializers/inflections.rb".freeze, "test/dummy/config/initializers/mime_types.rb".freeze, "test/dummy/config/initializers/session_store.rb".freeze, "test/dummy/config/initializers/wrap_parameters.rb".freeze, "test/dummy/config/locales/en.yml".freeze, "test/dummy/config/routes.rb".freeze, "test/dummy/config/secrets.yml".freeze, "test/dummy/log/test.log".freeze, "test/dummy/public/404.html".freeze, "test/dummy/public/422.html".freeze, "test/dummy/public/500.html".freeze, "test/dummy/public/favicon.ico".freeze, "test/helpers/template_assertions_test.rb".freeze, "test/integration/template_assertions_test.rb".freeze, "test/test_helper.rb".freeze]
s.homepage = "https://github.com/rails/rails-controller-testing".freeze
s.licenses = ["MIT".freeze]
s.required_ruby_version = Gem::Requirement.new(">= 2.2.2".freeze)
s.rubygems_version = "2.5.2.1".freeze
s.summary = "Extracting `assigns` and `assert_template` from ActionDispatch.".freeze
s.test_files = ["test/controllers/assigns_test.rb".freeze, "test/controllers/template_assertions_test.rb".freeze, "test/dummy/README.rdoc".freeze, "test/dummy/Rakefile".freeze, "test/dummy/app/controllers/assigns_controller.rb".freeze, "test/dummy/app/controllers/template_assertions_controller.rb".freeze, "test/dummy/app/controllers/view_assigns_controller.rb".freeze, "test/dummy/app/helpers/application_helper.rb".freeze, "test/dummy/app/views/layouts/application.html.erb".freeze, "test/dummy/app/views/layouts/standard.html.erb".freeze, "test/dummy/app/views/test/_directory/_partial_with_locales.html.erb".freeze, "test/dummy/app/views/test/_layout_for_partial.html.erb".freeze, "test/dummy/app/views/test/_partial.html.erb".freeze, "test/dummy/app/views/test/_partial_for_use_in_layout.html.erb".freeze, "test/dummy/app/views/test/calling_partial_with_layout.html.erb".freeze, "test/dummy/app/views/test/hello/hello.html.erb".freeze, "test/dummy/app/views/test/hello_world.html.erb".freeze, "test/dummy/app/views/test/hello_world_with_partial.html.erb".freeze, "test/dummy/app/views/test/render_partial_inside_directory.html.erb".freeze, "test/dummy/app/views/test/render_two_partials.html.erb".freeze, "test/dummy/bin/bundle".freeze, "test/dummy/bin/rails".freeze, "test/dummy/bin/rake".freeze, "test/dummy/bin/setup".freeze, "test/dummy/config.ru".freeze, "test/dummy/config/application.rb".freeze, "test/dummy/config/boot.rb".freeze, "test/dummy/config/database.yml".freeze, "test/dummy/config/environment.rb".freeze, "test/dummy/config/environments/development.rb".freeze, "test/dummy/config/environments/production.rb".freeze, "test/dummy/config/environments/test.rb".freeze, "test/dummy/config/initializers/assets.rb".freeze, "test/dummy/config/initializers/backtrace_silencers.rb".freeze, "test/dummy/config/initializers/cookies_serializer.rb".freeze, "test/dummy/config/initializers/filter_parameter_logging.rb".freeze, "test/dummy/config/initializers/inflections.rb".freeze, "test/dummy/config/initializers/mime_types.rb".freeze, "test/dummy/config/initializers/session_store.rb".freeze, "test/dummy/config/initializers/wrap_parameters.rb".freeze, "test/dummy/config/locales/en.yml".freeze, "test/dummy/config/routes.rb".freeze, "test/dummy/config/secrets.yml".freeze, "test/dummy/log/test.log".freeze, "test/dummy/public/404.html".freeze, "test/dummy/public/422.html".freeze, "test/dummy/public/500.html".freeze, "test/dummy/public/favicon.ico".freeze, "test/helpers/template_assertions_test.rb".freeze, "test/integration/template_assertions_test.rb".freeze, "test/test_helper.rb".freeze]
if s.respond_to? :specification_version then
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q.freeze, [">= 5.0.1.rc1"])
s.add_runtime_dependency(%q.freeze, [">= 5.0.1.rc1"])
s.add_runtime_dependency(%q.freeze, [">= 5.0.1.rc1"])
s.add_development_dependency(%q.freeze, [">= 5.0.1.rc1"])
s.add_development_dependency(%q.freeze, [">= 0"])
else
s.add_dependency(%q.freeze, [">= 5.0.1.rc1"])
s.add_dependency(%q.freeze, [">= 5.0.1.rc1"])
s.add_dependency(%q.freeze, [">= 5.0.1.rc1"])
s.add_dependency(%q.freeze, [">= 5.0.1.rc1"])
s.add_dependency(%q.freeze, [">= 0"])
end
else
s.add_dependency(%q.freeze, [">= 5.0.1.rc1"])
s.add_dependency(%q.freeze, [">= 5.0.1.rc1"])
s.add_dependency(%q.freeze, [">= 5.0.1.rc1"])
s.add_dependency(%q.freeze, [">= 5.0.1.rc1"])
s.add_dependency(%q.freeze, [">= 0"])
end
end