mirror of
https://github.com/TrentSPalmer/trentpalmerdotorg.git
synced 2024-11-14 06:11:31 -08:00
change LicenseChoicesTestCase from TestCase to SimpleTestCase
This commit is contained in:
parent
1ddc459ed3
commit
12f4a093f6
@ -1,4 +1,4 @@
|
|||||||
from django.test import TestCase
|
from django.test import SimpleTestCase
|
||||||
from audio.choices import LICENSE_CHOICES, get_license_info
|
from audio.choices import LICENSE_CHOICES, get_license_info
|
||||||
|
|
||||||
TEST_LICENSE_CHOICES = (
|
TEST_LICENSE_CHOICES = (
|
||||||
@ -22,7 +22,7 @@ TEST_LICENSE_INFO = (
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class LicenseChoicesTestCase(TestCase):
|
class LicenseChoicesTestCase(SimpleTestCase):
|
||||||
|
|
||||||
def test_license_choices(self):
|
def test_license_choices(self):
|
||||||
self.assertEqual(len(LICENSE_CHOICES), 7)
|
self.assertEqual(len(LICENSE_CHOICES), 7)
|
||||||
|
Loading…
Reference in New Issue
Block a user