Methods
- T
Instance Public methods
test_template_changes_are_not_reflected_with_cached_templates()
Link
# File actionview/test/template/compiled_templates_test.rb, line 17 def test_template_changes_are_not_reflected_with_cached_templates assert_equal "Hello world!", render(:file => "test/hello_world") modify_template "test/hello_world.erb", "Goodbye world!" do assert_equal "Hello world!", render(:file => "test/hello_world") end assert_equal "Hello world!", render(:file => "test/hello_world") end
test_template_changes_are_reflected_with_uncached_templates()
Link
# File actionview/test/template/compiled_templates_test.rb, line 25 def test_template_changes_are_reflected_with_uncached_templates assert_equal "Hello world!", render_without_cache(:file => "test/hello_world") modify_template "test/hello_world.erb", "Goodbye world!" do assert_equal "Goodbye world!", render_without_cache(:file => "test/hello_world") end assert_equal "Hello world!", render_without_cache(:file => "test/hello_world") end
test_template_gets_recompiled_when_using_different_keys_in_local_assigns()
Link
# File actionview/test/template/compiled_templates_test.rb, line 12 def test_template_gets_recompiled_when_using_different_keys_in_local_assigns assert_equal "one", render(:file => "test/render_file_with_locals_and_default") assert_equal "two", render(:file => "test/render_file_with_locals_and_default", :locals => { :secret => "two" }) end