Sha256: acc0455f00fc2ce9df6efdb1ed34deddaedbb1552e0fd70a1f943690f8ef3a0f
Contents?: true
Size: 526 Bytes
Versions: 90
Compression:
Stored size: 526 Bytes
Contents
#!/usr/bin/env ruby gem 'minitest', '>= 5.0.0' require 'minitest/autorun' require_relative 'alphametics' # Common test data version: <%= abbreviated_commit_hash %> class AlphameticsTest < Minitest::Test <% test_cases.each do |test_case| %> <%= test_case.runtime_comment %> def <%= test_case.test_name %> <%= test_case.skipped %> <%= 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
90 entries across 90 versions & 1 rubygems