blob: 7b61b9321e4b7d16b123c03d32f737553671fa0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
from unittest import TestCase
from django.test import tag
@tag("slow")
class TaggedTestCase(TestCase):
@tag("fast")
def test_single_tag(self):
self.assertEqual(1, 1)
@tag("fast", "core")
def test_multiple_tags(self):
self.assertEqual(1, 1)
|