Ejemplo n.º 1
0
 def test_main_yaml_ipy(self):
     """Test log setting"""
     sys.stdin = StringIO("quit\n")
     main(["--ipyfake", "I", "tests/test.yaml"])
Ejemplo n.º 2
0
 def test_main_input_arg(self):
     """Test log setting"""
     main(["--input", "tests/test.yaml", "I"])
Ejemplo n.º 3
0
 def test_main_yaml(self):
     """Test log setting"""
     with captured_output(BrokenPipeOutput) as (out, err):
         main(["-"])
Ejemplo n.º 4
0
 def test_main_yaml(self):
     """Test log setting"""
     main(["I", "tests/test.yaml"])
Ejemplo n.º 5
0
 def test_main_json_raw(self):
     """Test log setting"""
     main(["--raw", "--yaml", "I", "tests/test.json"])
Ejemplo n.º 6
0
 def test_main_json_list(self):
     """Test log setting"""
     main(["--list", "--yaml", "I", "tests/test.json"])
Ejemplo n.º 7
0
 def test_main_help(self):
     """Test log setting"""
     with self.assertRaises(SystemExit):
         main(["--help"])
Ejemplo n.º 8
0
 def test_main_jsonl3(self):
     """Test log setting"""
     main(["-k", "sep=;", "--list", "I", "tests/test.jsonl"])
Ejemplo n.º 9
0
 def test_main_jsonl(self):
     """Test log setting"""
     main(["--indent=-1", "I", "tests/test.json"])
Ejemplo n.º 10
0
 def test_main_text(self):
     """Test log setting"""
     main(["--indent=-1", "I", "tests/test.txt"])
Ejemplo n.º 11
0
 def test_main_yaml_input(self):
     """Test log setting"""
     main(["--yamli", "I", "tests/test.yaml"])