Skip to content

Commit

Permalink
test(project_management): Project Milestone view checks
Browse files Browse the repository at this point in the history
ref: #285 #292
  • Loading branch information
jon-nfc committed Sep 14, 2024
1 parent df9ad06 commit a3fafda
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import pytest
import unittest
import requests

from django.test import TestCase

from app.tests.abstract.models import ModelCommon



class ProjectMilestoneViews(
TestCase,
ModelCommon
):

add_module = 'project_management.views.project_milestones'
add_view = 'Add'

change_module = add_module
change_view = 'Change'

delete_module = add_module
delete_view = 'Delete'

display_module = add_module
display_view = 'View'

# index_module = add_module
# index_view = 'Index'

0 comments on commit a3fafda

Please sign in to comment.