Newer
Older
"""
Tests for the workouts application.
"""
from django.test import TestCase
# Create your tests here.
class TestTestCase(TestCase):
def test_true(self):
"""Animals that can speak are correctly identified"""
self.assertTrue(True)
def test_false(self):
"""Animals that can speak are correctly identified"""
self.assertFalse(True)