diff options
author | lsylvester <lachlan.sylvester@hypothetical.com.au> | 2018-10-01 09:50:57 +1000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2018-09-30 16:50:57 -0700 |
commit | 9d7d6336d79149c9932854517a777c3b304d7fdf (patch) | |
tree | 02400a8bfad7e3033d6badf540d631fba050183b /actionview/test/template | |
parent | 09f92a1b9883927dbeda23a0cc145a2a62a9df60 (diff) | |
download | rails-9d7d6336d79149c9932854517a777c3b304d7fdf.tar.gz rails-9d7d6336d79149c9932854517a777c3b304d7fdf.tar.bz2 rails-9d7d6336d79149c9932854517a777c3b304d7fdf.zip |
make actionview templates marshalable so that they can be serialized during the parallel tests (#34030)
Diffstat (limited to 'actionview/test/template')
-rw-r--r-- | actionview/test/template/template_test.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/actionview/test/template/template_test.rb b/actionview/test/template/template_test.rb index 3dc14e36e0..b348d1f17b 100644 --- a/actionview/test/template/template_test.rb +++ b/actionview/test/template/template_test.rb @@ -196,6 +196,13 @@ class TestERBTemplate < ActiveSupport::TestCase assert_match(Regexp.new("\xFC"), e.message) end + def test_template_is_marshalable + template = new_template + serialized = Marshal.load(Marshal.dump(template)) + assert_equal template.identifier, serialized.identifier + assert_equal template.source, serialized.source + end + def with_external_encoding(encoding) old = Encoding.default_external Encoding::Converter.new old, encoding if old != encoding |