Ticket #28869: test_foo.py

File test_foo.py, 268 bytes (added by William Ayd, 7 years ago)

test_foo.py

Line 
1from django.test import TestCase, tag
2
3@tag('foo-tests')
4class FooBase(TestCase):
5 ...
6
7class FooBar(FooBase):
8
9 def test_true(self):
10 self.assertTrue(True)
11
12@tag('baz-tests')
13class FooBaz(FooBase):
14
15 def test_true(self):
16 self.assertTrue(True)
Back to Top