mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-20 21:46:04 -05:00
35
tests/test_fixtures.py
Normal file
35
tests/test_fixtures.py
Normal file
@@ -0,0 +1,35 @@
|
||||
from django.test import TestCase
|
||||
|
||||
from files.models import Category, EncodeProfile
|
||||
|
||||
|
||||
class TestFixtures(TestCase):
|
||||
fixtures = ["fixtures/categories.json", "fixtures/encoding_profiles.json"]
|
||||
|
||||
def test_categories_fixtures(self):
|
||||
categories = Category.objects.all()
|
||||
self.assertEqual(
|
||||
categories.count(),
|
||||
6,
|
||||
"Problem with category fixtures",
|
||||
)
|
||||
categories = Category.objects.filter().order_by('id')
|
||||
self.assertEqual(
|
||||
categories.first().title,
|
||||
'Art',
|
||||
"Problem with category fixtures",
|
||||
)
|
||||
|
||||
def test_encodeprofile_fixtures(self):
|
||||
profiles = EncodeProfile.objects.all()
|
||||
self.assertEqual(
|
||||
profiles.count(),
|
||||
21,
|
||||
"Problem with Encode Profile fixtures",
|
||||
)
|
||||
profiles = EncodeProfile.objects.filter(active=True)
|
||||
self.assertEqual(
|
||||
profiles.count(),
|
||||
6,
|
||||
"Problem with Encode Profile fixtures, not as active as expected",
|
||||
)
|
||||
Reference in New Issue
Block a user