-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(core): Project tenancy model checks
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import pytest | ||
# import unittest | ||
# import requests | ||
|
||
from django.test import TestCase | ||
|
||
from app.tests.abstract.models import TenancyModel | ||
|
||
from project_management.models.projects import Project | ||
|
||
|
||
class ProjectModel( | ||
TestCase, | ||
TenancyModel | ||
): | ||
|
||
model = Project | ||
|
||
|
||
# def test_attribute_duration_ticket_value(self): | ||
# """Attribute value test | ||
|
||
# This aattribute calculates the ticket duration from | ||
# it's comments. must return total time in seconds | ||
# """ | ||
|
||
# pass |