예제 #1
0
파일: test_sops.py 프로젝트: kindlyops/sops
 def test_detect_filetype_returns_text_if_unknown(self):
     assert sops.detect_filetype("file.xml") == "bytes"
예제 #2
0
파일: test_sops.py 프로젝트: kindlyops/sops
 def test_detect_filetype_handle_yaml(self):
     assert sops.detect_filetype("file.yaml") == "yaml"
예제 #3
0
파일: test_sops.py 프로젝트: kindlyops/sops
 def test_detect_filetype_handle_json(self):
     assert sops.detect_filetype("file.json") == "json"
예제 #4
0
파일: test_sops.py 프로젝트: kindlyops/sops
 def test_detect_filetype_returns_text_if_unknown(self):
     assert sops.detect_filetype("file.xml") == "bytes"
예제 #5
0
파일: test_sops.py 프로젝트: kindlyops/sops
 def test_detect_filetype_handle_yaml(self):
     assert sops.detect_filetype("file.yaml") == "yaml"
예제 #6
0
파일: test_sops.py 프로젝트: kindlyops/sops
 def test_detect_filetype_handle_json(self):
     assert sops.detect_filetype("file.json") == "json"