From fe3f77ebfeaf03a4c481d76c21ea92af49cf72a6 Mon Sep 17 00:00:00 2001 From: ProtossDragoon Date: Sun, 30 Jun 2024 22:52:10 +0900 Subject: [PATCH] =?UTF-8?q?Chore:=20=EC=82=AC=EC=9A=A9=ED=95=98=EC=A7=80?= =?UTF-8?q?=20=EC=95=8A=EB=8A=94=20=ED=8C=8C=EC=9D=BC=EB=93=A4=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../subpackage/__init__.py | 0 autosink_data_validation/subpackage/hello.py | 9 --------- .../subpackage/test_hello.py | 18 ------------------ 3 files changed, 27 deletions(-) delete mode 100644 autosink_data_validation/subpackage/__init__.py delete mode 100644 autosink_data_validation/subpackage/hello.py delete mode 100644 autosink_data_validation/subpackage/test_hello.py diff --git a/autosink_data_validation/subpackage/__init__.py b/autosink_data_validation/subpackage/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/autosink_data_validation/subpackage/hello.py b/autosink_data_validation/subpackage/hello.py deleted file mode 100644 index 33f85eb..0000000 --- a/autosink_data_validation/subpackage/hello.py +++ /dev/null @@ -1,9 +0,0 @@ -print(__file__) - - -def hello_world(): - print('hello world!') - - -if __name__ == '__main__': - print('hello!') diff --git a/autosink_data_validation/subpackage/test_hello.py b/autosink_data_validation/subpackage/test_hello.py deleted file mode 100644 index e63d3f1..0000000 --- a/autosink_data_validation/subpackage/test_hello.py +++ /dev/null @@ -1,18 +0,0 @@ -import unittest - - -class Testing(unittest.TestCase): - - def test_string(self): - a = 'some' - b = 'some' - self.assertEqual(a, b) - - def test_boolean(self): - a = True - b = True - self.assertEqual(a, b) - - -if __name__ == '__main__': - unittest.main()