lib/atcoder_greedy/command/test.rb in atcoder_greedy-0.5.0 vs lib/atcoder_greedy/command/test.rb in atcoder_greedy-0.6.0

- old
+ new

@@ -4,9 +4,10 @@ module AtcoderGreedy class Command < Thor desc 'test [PROBLEM_FILE_NAME]', 'test your solution' + map 't' => 'test' def test(problem_name) TestCase.new(problem_name).validate end end end