Sha256: 0baeaa99124411187b9a76d86e95bd85d20fdab0bd4635637fa2806b2a21bda6
Contents?: true
Size: 603 Bytes
Versions: 90
Compression:
Stored size: 603 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 gem 'minitest', '>= 5.0.0' require 'minitest/autorun' require_relative 'run_length_encoding' # Common test data version: <%= abbreviated_commit_hash %> class RunLengthEncodingTest < Minitest::Test<% test_cases.each do |test_case| %> def <%= test_case.name %><% if test_case.skipped? %> skip<% end %> <%= test_case.assign_input %> <%= test_case.assign_output %> <%= test_case.assertion %> 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