Sha256: 984e5e1586571d07c0fa96896a69c22a8396df739ad4b00350d8d8dac4a6325f
Contents?: true
Size: 289 Bytes
Versions: 4
Compression:
Stored size: 289 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' def test(problem_name) TestCase.new(problem_name).validate end end end
Version data entries
4 entries across 4 versions & 1 rubygems