summaryrefslogtreecommitdiffstats
path: root/tests/tpb02/foo/test_foo.py
blob: 174b86b98e952f6aa8316ea5e8439983fad72d1a (plain)
1
2
3
4
5
6
7
8
9
10
11
from unittest import TestCase


class RequiredTest(TestCase):
    def test_tests_are_executed(self):
        open('test-executed', 'w').close()

    def test_testfiles_exist(self):
        open('testfile1.txt').close()
        open('testfile2.txt').close()
        open('testdir/testfile3.txt').close()