Skip to content
Snippets Groups Projects
tests.py 446 B
Newer Older
asmundh's avatar
asmundh committed
"""
Tests for the workouts application.
"""
from django.test import TestCase
from workouts.models import Workout
asmundh's avatar
asmundh committed

# Create your tests here.
"""
Tests for ./permissions.py
"""
class IsOwnerTestCase(TestCase):

    def setUp(self):
        #Workout.objects.create(name="testworkout")
        #testworkout = Workout.objects.get
        return super().setUp()

    def test_has_object_permission(self):
        self.assertEqual(True,True)