()
| 798 | |
| 799 | #[test] |
| 800 | fn test_get_ignore_template_python() { |
| 801 | let template = get_ignore_template("python"); |
| 802 | assert!(template.is_some()); |
| 803 | let content = template.unwrap(); |
| 804 | assert!(content.contains("__pycache__/")); |
| 805 | assert!(content.contains(".venv/")); |
| 806 | } |
| 807 | |
| 808 | #[test] |
| 809 | fn test_get_ignore_template_node() { |
nothing calls this directly
no test coverage detected