meshy / django-conman

NOT READY: Work in progress. A content management system for django
BSD 2-Clause "Simplified" License
3 stars 5 forks source link

Consistently name tests #82

Closed meshy closed 7 years ago

meshy commented 7 years ago

They're all over the place. Just for the sake of consistency, the following scheme seems reasonable:

# Standard
class SomethingTest(...):
    ...

# Non-standard
class TestSomething(...):
    ...
class Something(TestCase):
    ...
meshy commented 7 years ago

Unless putting Test first makes more sense for some reason?