Sha256: 6acf621536d66c58a9dd51e7b333d56a7190bfa8313be27ad4b9cada14aaba30
Contents?: true
Size: 536 Bytes
Versions: 58
Compression:
Stored size: 536 Bytes
Contents
#!/usr/bin/env ruby 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(XRUBY_LIB + '/bookkeeping.md') %> def test_bookkeeping skip assert_equal <%= version %>, BookKeeping::VERSION end end
Version data entries
58 entries across 41 versions & 1 rubygems