@mathpunk a minor thing, the require block makes this line redundant
https://github.com/mathpunk/cyclotron/blob/master/src/cyclotron/report.clj#L7
Ah. Having required cyclotron.case as case, ::case resolves correctly
good to know
using alias for keyword namespaces that don't exist as code namespaces is a nice trick though - it would likely make other namespaces clearer (I assume they were written before you discovered this trick)
I think so. What I was going for is, there were certain ideas that seemed distinct sub-ideas --- like the idea of counting failures --- but that were just data and didn't need functions
here if you used io/resource you could reliably point to something inside the repo (but perhaps it's intentional also that the sample data is not in the repo) https://github.com/mathpunk/cyclotron/blob/master/src/cyclotron/utils.clj#L11
but I also see io/as-file io/resource "reports" elsewhere which doesn't reflect anything visible in the repo