Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
test: initial tests development
Browse files Browse the repository at this point in the history
  • Loading branch information
LuizaMaluf committed Nov 1, 2023
1 parent 404feef commit bd4c1ab
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 0 deletions.
25 changes: 25 additions & 0 deletions apps/contests/tests_contests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from django.test import TestCase


class IndexViewTestCase(TestCase):
pass


class DetailViewTestCase(TestCase):
pass


class ContestTestCase(TestCase):
pass


class ContestStatusTestCase(TestCase):
pass


class ContestModelFormTestCase(TestCase):
pass


class ContestAdminTestCase(TestCase):
pass
17 changes: 17 additions & 0 deletions apps/problems/tests_problems.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from django.test import TestCase


class DetailViewTestCase(TestCase):
pass


class ProblemTestCase(TestCase):
pass


class ProblemModelFormTestCase(TestCase):
pass


class ProblemAdminTestCase(TestCase):
pass
13 changes: 13 additions & 0 deletions apps/users/tests_users.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from django.test import TestCase


class UserTestCase(TestCase):
pass


class UserManagerTastCase(TestCase):
pass


class UserAdminTestCase(TestCase):
pass

0 comments on commit bd4c1ab

Please sign in to comment.