diff --git a/test/test_helper.rb b/test/test_helper.rb index e2b959d..a288e0d 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,4 +1,4 @@ $LOAD_PATH.unshift File.expand_path('../lib', __dir__) require 'uplot' -require 'minitest/autorun' +require 'test/unit' diff --git a/test/uplot_test.rb b/test/uplot_test.rb index 3790752..67edf95 100644 --- a/test/uplot_test.rb +++ b/test/uplot_test.rb @@ -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