aboutsummaryrefslogtreecommitdiff
path: root/tests (unfollow)
Commit message (Collapse)Author
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
2022-05-18Add procedure realpath.Hugo Hörnquist
2022-05-11Add test for remove-child!Hugo Hörnquist
2022-05-11Add (currently failing) tests for remove-event.Hugo Hörnquist
2022-05-11Move let-env to own module.Hugo Hörnquist
2022-04-21Add a lot of new unit tests.Hugo Hörnquist
2022-04-21Allow tests in subdirs.Hugo Hörnquist
2022-04-11Merge all datetime tests to one file.Hugo Hörnquist
2022-04-05Readd --skip and --only flags to run-tests.Hugo Hörnquist
2022-04-05Add tests for add-and-save.Hugo Hörnquist
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