Sha256: 98d849ddace91cb3bb6e1fd0c5f384475097cd796867f1402087d0ac67a8fbfd
Contents?: true
Size: 515 Bytes
Versions: 29
Compression:
Stored size: 515 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(XRUBY_LIB + '/bookkeeping.md') %> def test_bookkeeping skip assert_equal <%= version %>, BookKeeping::VERSION end end
Version data entries
29 entries across 29 versions & 1 rubygems