Sha256: 30e06335edc8ce3262f9005655b8aa846b57ef15a4bc14d6c6ef53ca2847c4ab
Contents?: true
Size: 526 Bytes
Versions: 93
Compression:
Stored size: 526 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 require 'minitest/autorun' require_relative 'alpha' # Common test data version: <%= abbreviated_commit_hash %> class AlphaTest < Minitest::Test<% test_cases.each do |test_case| %> def <%= test_case.name %> <%= test_case.skip %> string = '<%= test_case.input %>' <%= test_case.assertion %> Alpha.something?(string) end <% end %> <%= IO.read(XRUBY_LIB + '/bookkeeping.md') %> def test_bookkeeping skip assert_equal <%= version %>, BookKeeping::VERSION end end
Version data entries
93 entries across 93 versions & 1 rubygems