Sha256: 549de228534614d1b167a9e7179eea826d0cb0b607d07ea36c691347a1cbef34
Contents?: true
Size: 504 Bytes
Versions: 90
Compression:
Stored size: 504 Bytes
Contents
#!/usr/bin/env ruby gem 'minitest', '>= 5.0.0' require 'minitest/autorun' require_relative 'two_bucket' # Common test data version: <%= abbreviated_commit_hash %> class TwoBucketTest < Minitest::Test<% test_cases.each do |test_case| %> def <%= test_case.test_name %><% if test_case.skipped? %> skip<% end %> <%= test_case.test_body %> 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