Files
django-wiki/tests/plugins/notifications/test_forms.py
2025-09-17 07:52:16 -05:00

10 lines
274 B
Python

from django.test import TestCase
from wiki.plugins.notifications.forms import SettingsFormSet
from tests.base import RequireSuperuserMixin
class SettingsFormTests(RequireSuperuserMixin, TestCase):
def test_formset(self):
SettingsFormSet(user=self.superuser1)