Skip to content
Snippets Groups Projects
Commit 30665def authored by Tobias Ørstad's avatar Tobias Ørstad
Browse files

Add tests to check if CI works

parent 18d028d6
No related branches found
No related tags found
1 merge request!15Dev
Pipeline #113587 passed with stages
in 2 minutes and 14 seconds
......@@ -4,3 +4,13 @@ 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)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment