Files
Laradi/test/laradi_test.rb

14 lines
235 B
Ruby

require "test_helper"
class LaradiTest < ActiveSupport::TestCase
test "it has a version number" do
assert Laradi::VERSION
end
test "LogicUnit exists" do
lu = LogicUnit.new
asset lu.execute === "It Works"
end
end