summaryrefslogtreecommitdiff
path: root/test/test_helper.rb
diff options
context:
space:
mode:
authorAbinoam P. Marques Jr <abinoam@gmail.com>2017-07-05 07:59:41 -0300
committerAbinoam P. Marques Jr <abinoam@gmail.com>2017-07-07 05:31:45 -0300
commitc61eb2098f60a4c631125bd970421de22314c313 (patch)
treee84d6721c081675469131cc777d3a344c87d17b7 /test/test_helper.rb
parentfd5de3951ad12a60da529f6e20250a2627023003 (diff)
downloadhighline-c61eb2098f60a4c631125bd970421de22314c313.tar.gz
Enforce double quotes on strings
Diffstat (limited to 'test/test_helper.rb')
-rw-r--r--test/test_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_helper.rb b/test/test_helper.rb
index 79fa1fb..0273900 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -4,13 +4,13 @@
require "English"
# Run code coverage only for mri
-require 'simplecov' if RUBY_ENGINE == 'ruby'
+require "simplecov" if RUBY_ENGINE == "ruby"
# Compatibility module for StringIO, File
# and Tempfile. Necessary for some tests.
require "io_console_compatible"
-require 'highline'
+require "highline"
debug_message = "Tests will be run under:\n"
debug_message << " - #{HighLine.new.terminal.class}\n"
debug_message << " - HighLine::VERSION #{HighLine::VERSION}\n"