This commit is contained in:
2025-08-24 09:15:17 +02:00
commit f4f904ac3d
10 changed files with 42 additions and 0 deletions

8
tests/main.rb Normal file
View File

@@ -0,0 +1,8 @@
require "minitest/autorun"
require_relative "../main"
class TestMain < Minitest::Test
def test_main
assert_equal true, true
end
end