Skip to content

Commit

Permalink
Add Prelude Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
mariari authored and lukaszcz committed Dec 1, 2024
1 parent b50851a commit ec39416
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/Test/Prelude.juvix
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module Test.Prelude;

import Test.JuvixUnit open;
import Stdlib.Prelude open;

tests : List Test :=
[testCase "And" (assertEqual "and works as expected" (and true false) false)];

suite : TestSuite := testSuite "Prelude" tests;

main : IO := runTestSuite suite;

0 comments on commit ec39416

Please sign in to comment.