Skip to content

Commit

Permalink
added new test for square root and equality
Browse files Browse the repository at this point in the history
  • Loading branch information
Elena Dobomyslova authored and ohhmm committed Mar 2, 2024
1 parent bb631c8 commit fb5d580
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions libskrypt/tests/TestEqualityPrecedence.skrypt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
(4)^(1/2)=-2?
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,10 @@ BOOST_AUTO_TEST_CASE(skryptExpOrdertest
}
BOOST_TEST(solutionsWithExpNoBrackets == solutions);
}

BOOST_AUTO_TEST_CASE(TestEqualityPrecedence
, *boost::unit_test::disabled()
) {
Skrypt skryptWithBrackets;
skryptWithBrackets.Load(TEST_SRC_DIR "TestEqualityPrecedence.skrypt");
}

0 comments on commit fb5d580

Please sign in to comment.