aboutsummaryrefslogtreecommitdiff
path: root/tests (unfollow)
Commit message (Collapse)Author
2023-09-11Extend `for'-macro to allow improper list elements.Hugo Hörnquist
2023-09-11Change `kvlist->assq` and `group-by` to return pairs.Hugo Hörnquist
Each value in the return of group-by must have exactly two values, so cons pairs (instead of lists) is much better.
2023-09-11Fix seeding of UUIDs.Hugo Hörnquist
2023-09-11Require component for path append.Hugo Hörnquist
Changed the signature of `path-append` to require at least one argument. The alternative would have been that no components expands into '.'.
2023-09-11Split test/util.scm into groups.Hugo Hörnquist
2023-09-11Add `break` and `continue` support in `for`.Hugo Hörnquist
2023-09-11Add documentation and tests for xdg basedir.Hugo Hörnquist
2023-09-11Enable let-env to unset variables.Hugo Hörnquist
2023-02-11Add test for path-append without components.Hugo Hörnquist
2022-10-16Change gettext '_' to 'G_'.Hugo Hörnquist
Guile 3 reserves _ for other stuff.
2022-09-23Move all generally usable scripts to module dir.Hugo Hörnquist
2022-09-18Add procedure relative-to.Hugo Hörnquist
2022-09-18Rewrote make-routes to use define-syntax.Hugo Hörnquist
This is the first step into adding extra functionallity, since I now want have to worry about how namespace pollution works.
2022-07-21Add diff view to test runner.Hugo Hörnquist
2022-07-07Tests allows multiple --only and --skip.Hugo Hörnquist
2022-07-07Better expected/actual printing in tests.Hugo Hörnquist
2022-07-07Various test cleanups.Hugo Hörnquist
2022-07-07Clean up crypto test.Hugo Hörnquist
2022-07-07Better messages for test-assert failures.Hugo Hörnquist
2022-07-07Automatic test name now narrower.Hugo Hörnquist
Truncated-width defaults to 79 chars, which is to wide with our padding and tree structure to the left.
2022-07-07Change run-tests shebang.Hugo Hörnquist
Now works no matter where bash is.
2022-07-07Add time[+-] overflow tests.Hugo Hörnquist
2022-07-07Group base64 tests.Hugo Hörnquist
2022-07-07Tests '--skip'-flag now uses test names.Hugo Hörnquist
This allows us both to (as before) skip complete files, as every file is run with its own name as a test group, but also individual tests and test group inside files. See GitHub issue #57
2022-06-23Replace datetime tests.Hugo Hörnquist
2022-06-23Update test-runner.Hugo Hörnquist
2022-06-23Remove (add|remove)-day, and month[+-].Hugo Hörnquist
Procedures where overly specific, and doing it manually was almost no more work.
2022-06-23Reformat test/datetime.scmHugo Hörnquist
2022-06-23Normalize base64 errors.Hugo Hörnquist
2022-06-23Clean up btn.Hugo Hörnquist
2022-06-23Remove ->str and ->quoted-string.Hugo Hörnquist
->str as an alias of ->string is removed. ->string is however left. ->quoted-string was always weird, and was only used once.
2022-06-23Normalize keyword syntax.Hugo Hörnquist
2022-06-23Wrote (and fixed) tests for filename-extension.Hugo Hörnquist
2022-06-21Top level catch around tests.Hugo Hörnquist
2022-06-13Cleanup of zic.Hugo Hörnquist
2022-06-13Remove custom let*.Hugo Hörnquist
While it was nice, the most important part was the multi-valued let from srfi-71 (which is implemented in srfi-71)). The minor pattern matching structures could often be replaced with car+cdr, or a propper match.
2022-06-13Add zic tests.Hugo Hörnquist
Also update zic to pass most of these tests.
2022-06-13fixup! a2988fb35f7c61041d094ca202dbc1e4baecde2fHugo Hörnquist
2022-06-12Update test-runner to display a tree for groups.Hugo Hörnquist
2022-06-12Add timespec tests.Hugo Hörnquist
2022-06-12Remove with-label.Hugo Hörnquist
2022-06-12Add html validator.Hugo Hörnquist
2022-06-12Add <!DOCTYPE html> to xhtml-doc macro.Hugo Hörnquist
The doctype declaration is "required" when outputing regular HTML, and fine when output XHTML. Also remove the tests of xhtml-doc, since they basically just copied the deffinition (and stoped working since a procedure can't easily be tested for equality).
2022-06-11Add number of TODO's.Hugo Hörnquist
2022-06-11Remove obsolete TODO about testing html sliders.Hugo Hörnquist
2022-06-11Add tests for web-query.Hugo Hörnquist
2022-06-11Add tests for exdate and rdate in recurrence sets.Hugo Hörnquist
And improve recurrence-advance to actually produce sensible objects. These are currently failing, but are fixed in the next commit.
2022-06-10Supress time-limited-stream test.Hugo Hörnquist
While fine, it often doesn't time out. I highly believe that this is a bug with how guile's time limit system works. And the test is slow either way per design, so might as well skip it.
2022-06-10Cleanup in run-tests.Hugo Hörnquist
2022-05-18Possibly marginally improve tests.Hugo Hörnquist