Sha256: c48a4026b34f5c15605cc97ba5f971943f1a7388c364256ef68386151887827f
Contents?: true
Size: 559 Bytes
Versions: 90
Compression:
Stored size: 559 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 gem 'minitest', '>= 5.0.0' require 'minitest/autorun' require_relative 'isogram' # Common test data version: <%= abbreviated_commit_hash %> class IsogramTest < Minitest::Test<% test_cases.each do |test_case| %> def <%= test_case.name %> <%= test_case.skip %> string = '<%= test_case.input %>' <%= test_case.assertion %> Isogram.is_isogram?(string) 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