Add test for existence of LogicUnit class

This commit is contained in:
2025-09-27 22:32:13 -04:00
parent b06420c828
commit ca9b31a713
2 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
class LogicUnit
def execute
"It Works"
end
end

View File

@@ -4,4 +4,10 @@ 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