initial commit with barebones project structure
This commit is contained in:
16
tests/testRecipes.py
Normal file
16
tests/testRecipes.py
Normal 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
|
Reference in New Issue
Block a user