Basic skeleton for blackbox script

This commit is contained in:
Shay Nehmad 2019-08-27 15:52:39 +03:00
parent cc5795d99c
commit c611903baf
3 changed files with 17 additions and 0 deletions

View File

View File

@ -0,0 +1,2 @@
pytest
unittest

View File

@ -0,0 +1,15 @@
import pytest
import unittest
class TestMonkeyBlackbox(unittest.TestCase):
@classmethod
def setUpClass(cls):
print("Setting up all GCP machines...")
@classmethod
def tearDownClass(cls):
print("Killing all GCP machines...")
def test_1_plus_1(self):
assert 1 + 1 == 2