Initial Commit

This commit is contained in:
2018-06-07 10:03:07 -05:00
commit b4852fbbd6
22 changed files with 1255 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
require "test_helper"
class CyberarmEngineTest < Minitest::Test
def test_that_it_has_a_version_number
refute_nil ::CyberarmEngine::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", __FILE__)
require "cyberarm_engine"
require "minitest/autorun"