aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_init.py
blob: b717e35dfbafb503af13bed11f2630dce3795f5f (plain)
1
2
3
4
5
6
7
8
9
from obfuscator.__init__ import main


def test_main_integration():
    test_source = "s3://test-bucket/data.csv"
    result = main(test_source, ["name"], log_level="DEBUG")
    result_str = result.decode("utf-8")
    assert "John" not in result_str
    assert "***" in result_str
git.ajschof.me — hosted by ajschofield — powered by cgit