Sha256: ca72ce3d5cf2a6444de2c283e1a1d62149748612a412d7ef7b0c53781c885299
Contents?: true
Size: 523 Bytes
Versions: 159
Compression:
Stored size: 523 Bytes
Contents
require 'minitest/autorun' require_relative '<%= exercise_name %>' # Hi. I am a custom comment # Common test data version: <%= abbreviated_commit_hash %> class <%= exercise_name_camel %>Test < Minitest::Test <% test_cases.each_with_index do |test_case, idx| %> def <%= test_case.name %> <%= test_case.skipped(idx) %> <%= test_case.workload %> end <% end %> <%= IO.read(EXERCISM_RUBY_LIB + '/bookkeeping.md') %> def test_bookkeeping skip assert_equal <%= version %>, BookKeeping::VERSION end end
Version data entries
159 entries across 159 versions & 1 rubygems