summaryrefslogtreecommitdiff
path: root/test/psych/test_coder.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/psych/test_coder.rb')
-rw-r--r--test/psych/test_coder.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/psych/test_coder.rb b/test/psych/test_coder.rb
index 1c1445901f..f6840ab518 100644
--- a/test/psych/test_coder.rb
+++ b/test/psych/test_coder.rb
@@ -274,7 +274,7 @@ module Psych
def test_coder_style_scalar_default
foo = Psych.dump 'some scalar'
- assert_equal "--- some scalar\n", foo
+ assert_match /\A--- some scalar\n(?:\.\.\.\n)?\z/, foo
end
def test_coder_style_scalar_any
@@ -282,7 +282,7 @@ module Psych
scalar: 'some scalar',
style: Psych::Nodes::Scalar::ANY,
tag: nil
- assert_equal "--- some scalar\n", foo
+ assert_match /\A--- some scalar\n(?:\.\.\.\n)?\z/, foo
end
def test_coder_style_scalar_plain
@@ -290,7 +290,7 @@ module Psych
scalar: 'some scalar',
style: Psych::Nodes::Scalar::PLAIN,
tag: nil
- assert_equal "--- some scalar\n", foo
+ assert_match /\A--- some scalar\n(?:\.\.\.\n)?\z/, foo
end
def test_coder_style_scalar_single_quoted