testing

Testing tools, testing philosophy & methodology...
raymcdermott 2016-02-18T12:04:20.000030Z

@bensu: nice, thanks

šŸ‘ 1
bjr 2016-02-18T22:31:49.000032Z

Does anyone know how to create test fixtures which selectively apply to test vars in a namespace? Ideally something like (use-fixtures :each :functional test-system-fixture) to only run that fixture on tests with :functional true in the test var metadata. This is to avoid creating separate namespaces for separate fixtures.

bjr 2016-02-18T22:39:23.000033Z

I know leiningen retains fixtures when it does test filtering by selectors ā€” but iā€™m actually looking for something like the inverse where all tests are run, but the fixture only applies to a subset. Selectively applying fixtures instead of selectively executing tests which have fixtures.