Sha256: 9bc54ccb8b395e72853bc49df052d4b429e2d612527671d55d65119ae555ab43
Contents?: true
Size: 311 Bytes
Versions: 1
Compression:
Stored size: 311 Bytes
Contents
require 'atcoder_greedy' require 'atcoder_greedy/command' require 'atcoder_greedy/lib/test_case' 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
atcoder_greedy-0.6.0 | lib/atcoder_greedy/command/test.rb |