test/test_rps.rb in PlayRockPaperScissorsGame-2.4.5 vs test/test_rps.rb in PlayRockPaperScissorsGame-2.4.6
- old
+ new
@@ -17,11 +17,11 @@
require_relative "./../lib/Constants.rb"
protected_methods :Constants
class << self
def continue(str1,str2,str3)
- puts ColorizedString[str1].colorize(:color => :green)
- print ColorizedString[str2].colorize(:color => :green)
+ puts str1
+ print str2
gets
puts str3
end
end
continue(Constants::INIT_STRINGS[0], Constants::INIT_STRINGS[1], Constants::INIT_STRINGS[2])