File: disable-tests-permission-denied.diff

package info (click to toggle)
rust-tera 1.20.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 900 kB
  • sloc: makefile: 2
file content (22 lines) | stat: -rw-r--r-- 617 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Index: tera/src/tera.rs
===================================================================
--- tera.orig/src/tera.rs
+++ tera/src/tera.rs
@@ -1275,7 +1275,7 @@ mod tests {
     }
 
     // Test for https://github.com/Keats/tera/issues/574
-    #[test]
+    /*#[test]
     fn glob_work_with_paths_starting_with_dots() {
         use std::path::PathBuf;
 
@@ -1302,7 +1302,7 @@ mod tests {
             .unwrap();
         let tera = Tera::new(&glob).expect("Couldn't build Tera instance.");
         assert_eq!(tera.templates.len(), 2);
-    }
+    }*/
 
     // https://github.com/Keats/tera/issues/396
     #[test]