aboutsummaryrefslogtreecommitdiff
path: root/tests (unfollow)
Commit message (Collapse)Author
2022-03-28Testrunner skip hidden files.Hugo Hörnquist
2022-03-28Normalize errors.Hugo Hörnquist
2022-03-08Add test for begin1 and set! interaction.Hugo Hörnquist
2022-03-07Complete coverage in base64 tests.Hugo Hörnquist
2022-03-07Replace Guile's srfi-64:s test-error with working version.Hugo Hörnquist
Along with updating now failing tests.
2022-03-07Rewrote checksum->string.Hugo Hörnquist
Lets take full advantage of guile's format.
2022-03-07Add tests for (crypto) module.Hugo Hörnquist
2022-03-07Add new tests.Hugo Hörnquist
2022-03-07Rewrote tests for path operations.Hugo Hörnquist
2022-03-07Add --verbose flag to testrunner.Hugo Hörnquist
2022-03-07Test runner only output coverage of "our" modules.Hugo Hörnquist
2022-03-06Repair begin1 tests.Hugo Hörnquist
2022-03-06Make web server test find free port.Hugo Hörnquist
2022-03-06Allow explicit GUILE environment, document it.Hugo Hörnquist
The environment variable GUILE can now be set to override the guile version, which allows us to test the code with multiple versions/implementations. Also updates README to note these variables.
2022-03-04Tests now use our local compiled files.Hugo Hörnquist
Previously there was a bunch of errors with the tests, where they tried to compile everything automatically, which usually went rather poorly due to it being in --debug mode.
2022-03-04Explicitly format unbound-variable errors.Hugo Hörnquist
2022-03-01Properly note failing tets in recurrence.Hugo Hörnquist
2022-03-01Create own test runner.Hugo Hörnquist
2022-03-01Add unit test for days-in-interval.Hugo Hörnquist
2022-02-13Datetime test parse-month.Hugo Hörnquist
2022-02-01Move path-append to own module.Hugo Hörnquist
2022-01-31Move stuff from calp/util to hnh/util.Hugo Hörnquist
This is the first (major) step in splitting the generally useful items into its own library.
2022-01-31Write some extra tests.Hugo Hörnquist
2022-01-29Add span-upto.Hugo Hörnquist
2022-01-29Add ~b and ~p flags to datetime parser.Hugo Hörnquist
2021-12-22Cleanup modules.Hugo Hörnquist
Primarly this moves all vcompenent input and output code to clearly labeled modules, instead of being spread out. At the same time it also removes a handfull of unused procedures.
2021-12-20let-env now handles non-local exits correctly.Hugo Hörnquist
2021-12-20find-extreme on empty list now an error.Hugo Hörnquist
2021-12-06Update xcal rrule parser to do as expected.Hugo Hörnquist
2021-11-08Fix flat event slice for calendars.Hugo Hörnquist
As noted in the fidd, our simple filter-sorted-stream on event-overlaps? missbehaves in some edge cases. The new system "should" work *fingers crossed*.
2021-11-08Document testrunner syntax.Hugo Hörnquist
2021-11-08Got coverage tests to work!Hugo Hörnquist
This makes running the tests quite a bit slower. Especially the more complicated ones such as recurrence-advanced.scm.
2021-08-30Fix minor syntax error for set/r!Hugo Hörnquist
2021-08-24Allow partial change and removal of XML Namespaces.Hugo Hörnquist
Changing the error to a returnu allows a partial namespace change map, which can sometimes be usefull (and should hopefully not lead to any issues here). Changing assoc-ref to assoc allows the removal of namespaces, since assoc-ref can't differentiate between a match with #f in its cdr, and no match. (assoc-ref '((a . #f)) 'a) ⇒ #f (assoc-ref '((a . #f)) 'b) ⇒ #f
2021-08-24Add tests for iCal unknown key warnings.Hugo Hörnquist
2021-08-24Warnings are errors when running tests.Hugo Hörnquist
Should prevent warnings from slipping through the cracks.
2021-08-21Slightly improve error handling in test-runner.Hugo Hörnquist
2021-08-21Repair BYDAY output for ical serialization.Hugo Hörnquist
I have no idea why the byday case was commented out while implementing xcal output. Either way it's now fixed, and should hopefully stay fixed with some tests.
2021-02-01Handle types of xcal rrule.Hugo Hörnquist
2021-01-14Clarify commentary for recurrence tests.Hugo Hörnquist
2021-01-14Rename recurrence files.Hugo Hörnquist
2021-01-14Merge several recurrence test files.Hugo Hörnquist
2021-01-13Fix broken test.Hugo Hörnquist
2021-01-13Add script for displaying test commentaries.Hugo Hörnquist
2021-01-13Add example xcal.Hugo Hörnquist
2021-01-13Add additional parse-endpoint-string tests.Hugo Hörnquist
2021-01-13Clarify event-length/clamped test.Hugo Hörnquist
2021-01-13Add commentary to all test files.Hugo Hörnquist
2021-01-13Add commentary to run-tests.Hugo Hörnquist
2021-01-13Remove x-flag from tests/termios.scmHugo Hörnquist