def test_detect_filetype_returns_text_if_unknown(self): assert sops.detect_filetype("file.xml") == "bytes"
def test_detect_filetype_handle_yaml(self): assert sops.detect_filetype("file.yaml") == "yaml"
def test_detect_filetype_handle_json(self): assert sops.detect_filetype("file.json") == "json"