improve test legibility

This commit is contained in:
Alan Oliveira
2024-10-23 08:06:24 +09:00
parent 844e3acf50
commit a3f5830728

View File

@@ -13,8 +13,8 @@ class EnvFileTest < ActiveSupport::TestCase
test "to_s won't escape '#'" do
env = {
"foo" => "\#$foo",
"bar" => "\#{bar}"
"foo" => '#$foo',
"bar" => '#{bar}'
}
assert_equal "foo=\#$foo\nbar=\#{bar}\n", \