Skip to content

Commit 18c43da

Browse files
authored
Create test_test0.py
Testing pytest
1 parent 88814af commit 18c43da

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

tests/test_test0.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from unittest import TestCase
2+
3+
class TryTesting(TestCase):
4+
def test_always_passes(self):
5+
self.assertTrue(True)
6+
7+
def test_always_fails(self):
8+
self.assertTrue(False)

0 commit comments

Comments
 (0)