From c3a0d2f04d5338a3ffc115de37fcd56dc85a092c Mon Sep 17 00:00:00 2001 From: Alex Schofield Date: Fri, 21 Feb 2025 03:20:12 +0000 Subject: update main unit test for core functionality --- test/test_init.py | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 test/test_init.py (limited to 'test/test_init.py') diff --git a/test/test_init.py b/test/test_init.py deleted file mode 100644 index 0915f13..0000000 --- a/test/test_init.py +++ /dev/null @@ -1,12 +0,0 @@ -from gdpr_obfuscator import Obfuscator -import moto - -obfuscator = Obfuscator() - - -def test_main_integration(): - test_source = "s3://test-bucket/data.csv" - result = obfuscator.process_s3(test_source, ["name"]) - result_str = result.decode("utf-8") - assert "John" not in result_str - assert "***" in result_str -- cgit v1.2.3