Replies: 1 comment 6 replies
-
I've wanted to port @pmoura's ISO Prolog tests to Scryer for a while: https://github.com/LogtalkDotOrg/logtalk3/blob/master/tests/prolog/NOTES.md They're notable in that they don't appear to depend on any unit testing library. At the barest level, a unit testing predicate should call its first argument, call the second to match the results over variables it shares with the first argument, and pretty-print success or failure to the terminal in an easy to read format. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I wanted to see how easy it would be to port SWI-Prolog unit testing to Scryer, but it depends on
library(options)
which depends onlibrary(dicts)
and it just unravels into a dependency hell.Just wondering if there are other options or existing plans for a unit testing library inside Scryer?
Beta Was this translation helpful? Give feedback.
All reactions