Initial import

This commit is contained in:
Dan Milne
2020-04-22 00:18:09 +10:00
commit 0929b3eb80
18 changed files with 392 additions and 0 deletions

11
test/openlib_test.rb Normal file
View File

@@ -0,0 +1,11 @@
require "test_helper"
class OpenlibTest < Minitest::Test
def test_that_it_has_a_version_number
refute_nil ::Openlib::VERSION
end
def test_it_does_something_useful
assert false
end
end

4
test/test_helper.rb Normal file
View File

@@ -0,0 +1,4 @@
$LOAD_PATH.unshift File.expand_path("../lib", __dir__)
require "openlib"
require "minitest/autorun"