summaryrefslogtreecommitdiff
path: root/tests/post.scm
Commit message (Collapse)AuthorAgeFilesLines
* post: Add convenience procedures for post author, tags, and title.Filip Lajszczak2023-11-101-0/+26
| | | | | | | | | | Author, tags and title metadata are commonly used, * haunt/post.scm (post-author, post-tags, post-title): New procedures. * tests/post.scm ("post-author, author metadata", "post-tags, tags metadata", "post-title, title metadata", "post-author, no metadata", "post-tags, no metadata", "post-title, no metadata"): New tests. * doc/haunt.texi (Posts): Docs for new procedures.
* Fix test suite.v0.2.6David Thompson2022-01-261-46/+42
|
* Fix tests that fail during daylight savings time.David Thompson2017-01-231-1/+2
| | | | lol oops
* post: Add read-metadata-headers procedure.David Thompson2015-10-151-1/+14
| | | | | | | | * haunt/post.scm (read-metadata-headers): New procedure. * haunt/reader.scm (read-html-post): Reimplement using 'read-metadata-headers'. * tests/post.scm (%tzoffset): New variable. ("read-metadata-headers"): New test.
* tests: Add post tests.David Thompson2015-10-151-0/+71
* tests/post.scm: New file. * Makefile.am (TESTS): Add it.