()
| 805 | |
| 806 | #[test] |
| 807 | fn test_get_ignore_template_python() { |
| 808 | let template = get_ignore_template("python"); |
| 809 | assert!(template.is_some()); |
| 810 | let content = template.unwrap(); |
| 811 | assert!(content.contains("__pycache__/")); |
| 812 | assert!(content.contains(".venv/")); |
| 813 | } |
| 814 | |
| 815 | #[test] |
| 816 | fn test_get_ignore_template_node() { |
nothing calls this directly
no test coverage detected