Prepare a test skeleton

This commit is contained in:
kojix2 2020-07-29 11:54:04 +09:00
parent 4c52564eff
commit 0b72cef7b9
2 changed files with 3 additions and 7 deletions

View File

@ -1,4 +1,4 @@
$LOAD_PATH.unshift File.expand_path('../lib', __dir__)
require 'uplot'
require 'minitest/autorun'
require 'test/unit'

View File

@ -1,11 +1,7 @@
require 'test_helper'
class UplotTest < Minitest::Test
class UplotTest < Test::Unit::TestCase
def test_that_it_has_a_version_number
refute_nil ::Uplot::VERSION
end
def test_it_does_something_useful
assert false
assert_kind_of String, ::Uplot::VERSION
end
end