Skip to content
Snippets Groups Projects
tests.py 380 B
Newer Older
asmundh's avatar
asmundh committed
"""
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)