├── .github └── workflows │ └── test.yaml ├── .gitignore ├── README.md ├── foobar.sublime-syntax ├── helloworld.py ├── syntax_test.foobar └── tests ├── test_defer.py └── test_hw.py /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randy3k/UnitTesting-example/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .coverage 2 | .vagrant 3 | *.pyc 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randy3k/UnitTesting-example/HEAD/README.md -------------------------------------------------------------------------------- /foobar.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randy3k/UnitTesting-example/HEAD/foobar.sublime-syntax -------------------------------------------------------------------------------- /helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randy3k/UnitTesting-example/HEAD/helloworld.py -------------------------------------------------------------------------------- /syntax_test.foobar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randy3k/UnitTesting-example/HEAD/syntax_test.foobar -------------------------------------------------------------------------------- /tests/test_defer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randy3k/UnitTesting-example/HEAD/tests/test_defer.py -------------------------------------------------------------------------------- /tests/test_hw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randy3k/UnitTesting-example/HEAD/tests/test_hw.py --------------------------------------------------------------------------------