initial commit with barebones project structure

This commit is contained in:
PatchOfScotland
2022-11-29 17:15:14 +01:00
parent f940354be4
commit 9dd2d0c209
11 changed files with 287 additions and 0 deletions

16
tests/testRecipes.py Normal file
View File

@ -0,0 +1,16 @@
import unittest
from recipes.JupyterNotebookRecipe import JupyterNotebookRecipe
class CorrectnessTests(unittest.TestCase):
def setUp(self) -> None:
return super().setUp()
def tearDown(self) -> None:
return super().tearDown()
def testJupyterNotebookRecipe(self):
pass