summaryrefslogtreecommitdiffstats
path: root/mirrors/tests/test_templatetags.py
AgeCommit message (Collapse)AuthorFilesLines
2019-02-18mirrors: replace self-written floatvalue with floatformatJelle van der Waa1-8/+1
In 2013 floatformat was very slow in the mirror status page, these days floatformat is not that much slower.
2018-01-29More code refactoring / tests (#79)jelle van der Waa1-1/+6
* main: move tests to main/tests Move the templatetags tests to main/tests/test_templatetags. * main: Add test for templatetags country Create a test for the templatetag country_flag. * main: remove duplicate floatvalue floatvalue is only used in the mirrors templates and the same exact function exists in the mirror_status templatetags. * main: Remove duplicate hours filter The hours filter is also defined in the mirror_status and only used in mirrors. * main: move percentage filter to mirrors Move the percentage filter to the only user of it and add a test for basic use cases. * main: remove duplicate duration implementation The duration templatetag filter is also defined in mirror_status.py * templates: remove unrequired import flags * main: Add missing testcase for country_flag Add the None test case, so that the function is fully covered. * todolists: create tests for Todolist model Add basic tests for the Todolist model
2018-01-22Mirror tests (#78)release_2018-01-22jelle van der Waa1-0/+29
* mirrors: Move tests to mirrors/tests Move the tests to separate files in mirrors/tests and expand the model tests with tests for the Mirror class. * Add CheckLocation test * mirrors: Add tests for template filters Include tests for the filters used in the mirrors views. * devel: Add tests for template filter in_group Include a test for a simple case of the in_group filter.