Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: move unit tests to corresponding unit folder #279

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
Empty file.
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from mock import patch
from rest_framework.serializers import ValidationError

from ..serializers import EdxappCourseEnrollmentSerializer
from eox_core.api.v1.serializers import EdxappCourseEnrollmentSerializer


class CourseKeyValidationTest(TestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from mock import MagicMock
from rest_framework.exceptions import NotAuthenticated

from ..permissions import EoxCoreAPIPermission
from eox_core.api.v1.permissions import EoxCoreAPIPermission


class PermissionsTest(TestCase):
Expand Down
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@

import eox_core
from eox_core.api.v1.views import UserInfo

from ..test_utils import SuperUserFactory
from eox_core.test_utils import SuperUserFactory

JSON_CONTENT_TYPE = 'application/json'

Expand Down
Loading