Test has_config returns False when no config section.
(self, temp_yaml_files)
| 317 | assert parser.has_config(yaml_data) is True |
| 318 | |
| 319 | def test_has_config_false(self, temp_yaml_files): |
| 320 | """Test has_config returns False when no config section.""" |
| 321 | parser = YAMLTaskParser() |
| 322 | yaml_data = parser.load_task(temp_yaml_files["no_config_yaml"]) |
| 323 | assert parser.has_config(yaml_data) is False |
| 324 | |
| 325 | |
| 326 | # ============================================================================= |
nothing calls this directly
no test coverage detected