Sha256: 1534ea8563ca17cbb3dc8dc0f0253936dcb2be07f9b6da29feac836f752de9d2
Contents?: true
Size: 587 Bytes
Versions: 90
Compression:
Stored size: 587 Bytes
Contents
require 'minitest/autorun' require_relative 'gigasecond' # Common test data version: <%= abbreviated_commit_hash %> class GigasecondTest < Minitest::Test<% test_cases.each do |test_case| %> def <%= test_case.name %><% if test_case.skipped? %> skip<% end %> result = Gigasecond.from(<%= test_case.got %>) assert_equal <%= test_case.want %>, result end <% end %> # Test your 1Gs anniversary def test_with_your_birthday skip end <%= IO.read(XRUBY_LIB + '/bookkeeping.md') %> def test_bookkeeping assert_equal <%= version %>, BookKeeping::VERSION end end
Version data entries
90 entries across 90 versions & 1 rubygems