aboutsummaryrefslogtreecommitdiff
path: root/tests/test (unfollow)
Commit message (Collapse)Author
2023-09-11Fix bug causing for's continue to not work.Hugo Hörnquist
2023-09-11Introduce stream-split-by.Hugo Hörnquist
This procedure isn't currently used, but as noted is really useful for grouping a character stream into a word stream, which is a later commit will use for it for justifying posibly infinite streams of text.
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-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-07Various test cleanups.Hugo Hörnquist
2022-07-07Clean up crypto test.Hugo Hörnquist
2022-07-07Add time[+-] overflow tests.Hugo Hörnquist
2022-07-07Group base64 tests.Hugo Hörnquist
2022-06-23Replace datetime tests.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-23Wrote (and fixed) tests for filename-extension.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-12Add timespec tests.Hugo Hörnquist
2022-06-12Remove with-label.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-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-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-11Merge all datetime tests to one file.Hugo Hörnquist
2022-04-05Add tests for add-and-save.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