summaryrefslogtreecommitdiff
path: root/test/test_string_extension.rb
diff options
context:
space:
mode:
authorAbinoam P. Marques Jr <abinoam@gmail.com>2017-06-30 23:53:15 -0300
committerAbinoam P. Marques Jr <abinoam@gmail.com>2017-06-30 23:53:15 -0300
commit97888f5f91f9675ef2f7809fe1cb423abf6099c8 (patch)
treed26f2898b93308ba8a3e12b5fd3b363a46a0ef59 /test/test_string_extension.rb
parent7a63996d6eaccbe403c724f40a771e4a48c7ea34 (diff)
downloadhighline-97888f5f91f9675ef2f7809fe1cb423abf6099c8.tar.gz
Rubocop automatic corrections
Diffstat (limited to 'test/test_string_extension.rb')
-rw-r--r--test/test_string_extension.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/test_string_extension.rb b/test/test_string_extension.rb
index 9f87294..fb4b9ff 100644
--- a/test/test_string_extension.rb
+++ b/test/test_string_extension.rb
@@ -13,7 +13,6 @@ require "highline"
require "stringio"
require "string_methods"
-
# FakeString is here just to avoid
# using HighLine.colorize_strings
# on tests
@@ -39,7 +38,7 @@ class TestStringExtension < Minitest::Test
unless Gem::Version.new(YAML::VERSION) < Gem::Version.new("2.0.2")
highline_string = HighLine::String.new("Yaml didn't messed with HighLine::String")
yaml_highline_string = highline_string.to_yaml
- yaml_loaded_string = YAML.load(yaml_highline_string)
+ yaml_loaded_string = YAML.safe_load(yaml_highline_string)
assert_equal "Yaml didn't messed with HighLine::String", yaml_loaded_string
assert_equal highline_string, yaml_loaded_string
@@ -63,7 +62,7 @@ class TestStringExtension < Minitest::Test
def test_String_includes_StringExtension_when_receives_colorize_strings
@include_received = 0
- caller = Proc.new { @include_received += 1 }
+ caller = proc { @include_received += 1 }
::String.stub :include, caller do
HighLine.colorize_strings
end