Sha256: 1db710f8eba4166b95bd9209f392037ee6a9c76051c494159675dc9c5af2e2cb
Contents?: true
Size: 524 Bytes
Versions: 176
Compression:
Stored size: 524 Bytes
Contents
require 'minitest/autorun' require_relative '<%= exercise_name %>' # Common test data version: <%= canonical_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
176 entries across 159 versions & 1 rubygems