Sha256: db8ced87d7c139d3d6fcf6ab5348c0691e3d729609a1db50effa245165bdc71b
Contents?: true
Size: 538 Bytes
Versions: 87
Compression:
Stored size: 538 Bytes
Contents
#!/usr/bin/env ruby gem 'minitest', '>= 5.0.0' require 'minitest/autorun' require_relative 'rna_transcription' # Common test data version: <%= abbreviated_commit_hash %> class ComplementTest < Minitest::Test<% test_cases.each do |test_case| %> def <%= test_case.test_name %> <%= test_case.skipped %> assert_equal '<%= test_case.expected %>', <%= test_case.work_load %> end <% end %> <%= IO.read(XRUBY_LIB + '/bookkeeping.md') %> def test_bookkeeping skip assert_equal <%= version %>, BookKeeping::VERSION end end
Version data entries
87 entries across 87 versions & 1 rubygems