summaryrefslogtreecommitdiff
path: root/test/Main.hs (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-07-10handle partially present optional nestingsstuebinm1-9/+38
these would previously silently fail and simply produce a Nothing if only some (but not all) of the nested keys were present. This is not reasonable behaviour that anyone would expect; whenever a nested key is present, absence of another should be an error (the same goes for any other errors in that key's definition).
2024-06-08quasi-quotes for config keysstuebinm1-2/+4
2024-06-07the Config interface should be Applicative, not Monadstuebinm1-3/+16
this allows for safer alternative uses for it, such as running it on an empty list of config sources to just get the list of keys it uses.
2024-06-07allow for non-required config optionsstuebinm1-3/+3
2024-06-06nested values, tests, and aesonstuebinm1-20/+74