()
| 811 | |
| 812 | #[test] |
| 813 | fn test_get_ignore_template_python() { |
| 814 | let template = get_ignore_template("python"); |
| 815 | assert!(template.is_some()); |
| 816 | let content = template.unwrap(); |
| 817 | assert!(content.contains("__pycache__/")); |
| 818 | assert!(content.contains(".venv/")); |
| 819 | } |
| 820 | |
| 821 | #[test] |
| 822 | fn test_get_ignore_template_node() { |
nothing calls this directly
no test coverage detected