Modernize macro_rules! invocations
macro_rules! is like an item that defines a macro. Other items don't have a trailing semicolon, or use a paren-delimited body. If there's an argument for matching the invocation syntax, e.g. parentheses for an expr macro, then I think that applies more strongly to the *inner* delimiters on the LHS, wrapping the individual argument patterns.
This commit is contained in:
parent
c9f0ff3813
commit
416137eb31
76 changed files with 355 additions and 325 deletions
|
@ -558,7 +558,7 @@ mod tests {
|
|||
t!(b"foo/\xFFbar", filename_display, "\u{FFFD}bar");
|
||||
t!(b"/", filename_display, "");
|
||||
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
($path:expr, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -573,7 +573,7 @@ mod tests {
|
|||
assert!(mo.as_slice() == $exp);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!("foo", "foo");
|
||||
t!(b"foo\x80", "foo\u{FFFD}");
|
||||
|
@ -585,7 +585,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_display() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
($path:expr, $exp:expr, $expf:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -595,7 +595,7 @@ mod tests {
|
|||
assert!(f == $expf);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(b"foo", "foo", "foo");
|
||||
t!(b"foo/bar", "foo/bar", "bar");
|
||||
|
@ -608,7 +608,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_components() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $op:ident, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -629,7 +629,7 @@ mod tests {
|
|||
assert!(path.$op() == $exp);
|
||||
}
|
||||
);
|
||||
);
|
||||
}
|
||||
|
||||
t!(v: b"a/b/c", filename, Some(b"c"));
|
||||
t!(v: b"a/b/c\xFF", filename, Some(b"c\xFF"));
|
||||
|
@ -692,7 +692,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_push() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $join:expr) => (
|
||||
{
|
||||
let path = $path;
|
||||
|
@ -703,7 +703,7 @@ mod tests {
|
|||
assert!(p1 == p2.join(join));
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a/b/c", "..");
|
||||
t!(s: "/a/b/c", "d");
|
||||
|
@ -713,7 +713,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_push_path() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $push:expr, $exp:expr) => (
|
||||
{
|
||||
let mut p = Path::new($path);
|
||||
|
@ -722,7 +722,7 @@ mod tests {
|
|||
assert!(p.as_str() == Some($exp));
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a/b/c", "d", "a/b/c/d");
|
||||
t!(s: "/a/b/c", "d", "/a/b/c/d");
|
||||
|
@ -734,7 +734,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_push_many() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $push:expr, $exp:expr) => (
|
||||
{
|
||||
let mut p = Path::new($path);
|
||||
|
@ -749,7 +749,7 @@ mod tests {
|
|||
assert!(p.as_vec() == $exp);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a/b/c", ["d", "e"], "a/b/c/d/e");
|
||||
t!(s: "a/b/c", ["d", "/e"], "/e");
|
||||
|
@ -762,7 +762,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_pop() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $left:expr, $right:expr) => (
|
||||
{
|
||||
let mut p = Path::new($path);
|
||||
|
@ -779,7 +779,7 @@ mod tests {
|
|||
assert!(result == $right);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(b: b"a/b/c", b"a/b", true);
|
||||
t!(b: b"a", b".", true);
|
||||
|
@ -818,7 +818,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_join_path() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $join:expr, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -827,7 +827,7 @@ mod tests {
|
|||
assert!(res.as_str() == Some($exp));
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a/b/c", "..", "a/b");
|
||||
t!(s: "/a/b/c", "d", "/a/b/c/d");
|
||||
|
@ -839,7 +839,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_join_many() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $join:expr, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -854,7 +854,7 @@ mod tests {
|
|||
assert!(res.as_vec() == $exp);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a/b/c", ["d", "e"], "a/b/c/d/e");
|
||||
t!(s: "a/b/c", ["..", "d"], "a/b/d");
|
||||
|
@ -917,7 +917,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_setters() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $set:ident, $with:ident, $arg:expr) => (
|
||||
{
|
||||
let path = $path;
|
||||
|
@ -938,7 +938,7 @@ mod tests {
|
|||
assert!(p1 == p2.$with(arg));
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(v: b"a/b/c", set_filename, with_filename, b"d");
|
||||
t!(v: b"/", set_filename, with_filename, b"foo");
|
||||
|
@ -961,7 +961,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_getters() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $filename:expr, $dirname:expr, $filestem:expr, $ext:expr) => (
|
||||
{
|
||||
let path = $path;
|
||||
|
@ -992,7 +992,7 @@ mod tests {
|
|||
assert!(path.extension() == $ext);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(v: Path::new(b"a/b/c"), Some(b"c"), b"a/b", Some(b"c"), None);
|
||||
t!(v: Path::new(b"a/b/\xFF"), Some(b"\xFF"), b"a/b", Some(b"\xFF"), None);
|
||||
|
@ -1031,7 +1031,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_is_absolute() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $abs:expr, $rel:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -1039,7 +1039,7 @@ mod tests {
|
|||
assert_eq!(path.is_relative(), $rel);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
t!(s: "a/b/c", false, true);
|
||||
t!(s: "/a/b/c", true, false);
|
||||
t!(s: "a", false, true);
|
||||
|
@ -1052,7 +1052,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_is_ancestor_of() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $dest:expr, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -1060,7 +1060,7 @@ mod tests {
|
|||
assert_eq!(path.is_ancestor_of(&dest), $exp);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a/b/c", "a/b/c/d", true);
|
||||
t!(s: "a/b/c", "a/b/c", true);
|
||||
|
@ -1086,7 +1086,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_ends_with_path() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $child:expr, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -1101,7 +1101,7 @@ mod tests {
|
|||
assert_eq!(path.ends_with_path(&child), $exp);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a/b/c", "c", true);
|
||||
t!(s: "a/b/c", "d", false);
|
||||
|
@ -1125,7 +1125,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_path_relative_from() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $other:expr, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -1134,7 +1134,7 @@ mod tests {
|
|||
assert_eq!(res.as_ref().and_then(|x| x.as_str()), $exp);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a/b/c", "a/b", Some("c"));
|
||||
t!(s: "a/b/c", "a/b/d", Some("../c"));
|
||||
|
@ -1170,7 +1170,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_components_iter() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -1196,7 +1196,7 @@ mod tests {
|
|||
assert_eq!(comps, exp)
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(b: b"a/b/c", [b"a", b"b", b"c"]);
|
||||
t!(b: b"/\xFF/a/\x80", [b"\xFF", b"a", b"\x80"]);
|
||||
|
@ -1216,7 +1216,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_str_components() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(b: $arg:expr, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($arg);
|
||||
|
@ -1228,7 +1228,7 @@ mod tests {
|
|||
assert_eq!(comps, exp);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(b: b"a/b/c", [Some("a"), Some("b"), Some("c")]);
|
||||
t!(b: b"/\xFF/a/\x80", [None, Some("a"), None]);
|
||||
|
|
|
@ -1149,7 +1149,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_parse_prefix() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
($path:expr, $exp:expr) => (
|
||||
{
|
||||
let path = $path;
|
||||
|
@ -1159,7 +1159,7 @@ mod tests {
|
|||
"parse_prefix(\"{}\"): expected {}, found {}", path, exp, res);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!("\\\\SERVER\\share\\foo", Some(UNCPrefix(6,5)));
|
||||
t!("\\\\", None);
|
||||
|
@ -1348,7 +1348,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_display() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
($path:expr, $exp:expr, $expf:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -1358,7 +1358,7 @@ mod tests {
|
|||
assert_eq!(f, $expf);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!("foo", "foo", "foo");
|
||||
t!("foo\\bar", "foo\\bar", "bar");
|
||||
|
@ -1367,7 +1367,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_components() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $op:ident, $exp:expr) => (
|
||||
{
|
||||
let path = $path;
|
||||
|
@ -1390,7 +1390,7 @@ mod tests {
|
|||
assert!(path.$op() == $exp);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(v: b"a\\b\\c", filename, Some(b"c"));
|
||||
t!(s: "a\\b\\c", filename_str, "c");
|
||||
|
@ -1490,7 +1490,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_push() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $join:expr) => (
|
||||
{
|
||||
let path = $path;
|
||||
|
@ -1501,7 +1501,7 @@ mod tests {
|
|||
assert!(p1 == p2.join(join));
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a\\b\\c", "..");
|
||||
t!(s: "\\a\\b\\c", "d");
|
||||
|
@ -1525,7 +1525,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_push_path() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $push:expr, $exp:expr) => (
|
||||
{
|
||||
let mut p = Path::new($path);
|
||||
|
@ -1534,7 +1534,7 @@ mod tests {
|
|||
assert_eq!(p.as_str(), Some($exp));
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a\\b\\c", "d", "a\\b\\c\\d");
|
||||
t!(s: "\\a\\b\\c", "d", "\\a\\b\\c\\d");
|
||||
|
@ -1577,7 +1577,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_push_many() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $push:expr, $exp:expr) => (
|
||||
{
|
||||
let mut p = Path::new($path);
|
||||
|
@ -1592,7 +1592,7 @@ mod tests {
|
|||
assert_eq!(p.as_vec(), $exp);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a\\b\\c", ["d", "e"], "a\\b\\c\\d\\e");
|
||||
t!(s: "a\\b\\c", ["d", "\\e"], "\\e");
|
||||
|
@ -1606,7 +1606,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_pop() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $left:expr, $right:expr) => (
|
||||
{
|
||||
let pstr = $path;
|
||||
|
@ -1627,7 +1627,7 @@ mod tests {
|
|||
assert!(result == $right);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a\\b\\c", "a\\b", true);
|
||||
t!(s: "a", ".", true);
|
||||
|
@ -1695,7 +1695,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_join_path() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $join:expr, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -1704,7 +1704,7 @@ mod tests {
|
|||
assert_eq!(res.as_str(), Some($exp));
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a\\b\\c", "..", "a\\b");
|
||||
t!(s: "\\a\\b\\c", "d", "\\a\\b\\c\\d");
|
||||
|
@ -1718,7 +1718,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_join_many() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $join:expr, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -1733,7 +1733,7 @@ mod tests {
|
|||
assert_eq!(res.as_vec(), $exp);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a\\b\\c", ["d", "e"], "a\\b\\c\\d\\e");
|
||||
t!(s: "a\\b\\c", ["..", "d"], "a\\b\\d");
|
||||
|
@ -1746,7 +1746,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_with_helpers() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $op:ident, $arg:expr, $res:expr) => (
|
||||
{
|
||||
let pstr = $path;
|
||||
|
@ -1759,7 +1759,7 @@ mod tests {
|
|||
pstr, stringify!($op), arg, exp, res.as_str().unwrap());
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a\\b\\c", with_filename, "d", "a\\b\\d");
|
||||
t!(s: ".", with_filename, "foo", "foo");
|
||||
|
@ -1831,7 +1831,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_setters() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $set:ident, $with:ident, $arg:expr) => (
|
||||
{
|
||||
let path = $path;
|
||||
|
@ -1852,7 +1852,7 @@ mod tests {
|
|||
assert!(p1 == p2.$with(arg));
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(v: b"a\\b\\c", set_filename, with_filename, b"d");
|
||||
t!(v: b"\\", set_filename, with_filename, b"foo");
|
||||
|
@ -1876,7 +1876,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_getters() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $filename:expr, $dirname:expr, $filestem:expr, $ext:expr) => (
|
||||
{
|
||||
let path = $path;
|
||||
|
@ -1907,7 +1907,7 @@ mod tests {
|
|||
assert!(path.extension() == $ext);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(v: Path::new(b"a\\b\\c"), Some(b"c"), b"a\\b", Some(b"c"), None);
|
||||
t!(s: Path::new("a\\b\\c"), Some("c"), Some("a\\b"), Some("c"), None);
|
||||
|
@ -1942,7 +1942,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_is_absolute() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
($path:expr, $abs:expr, $vol:expr, $cwd:expr, $rel:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -1961,7 +1961,7 @@ mod tests {
|
|||
path.as_str().unwrap(), rel, b);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
t!("a\\b\\c", false, false, false, true);
|
||||
t!("\\a\\b\\c", false, true, false, false);
|
||||
t!("a", false, false, false, true);
|
||||
|
@ -1982,7 +1982,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_is_ancestor_of() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $dest:expr, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -1994,7 +1994,7 @@ mod tests {
|
|||
path.as_str().unwrap(), dest.as_str().unwrap(), exp, res);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a\\b\\c", "a\\b\\c\\d", true);
|
||||
t!(s: "a\\b\\c", "a\\b\\c", true);
|
||||
|
@ -2085,7 +2085,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_ends_with_path() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $child:expr, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -2093,7 +2093,7 @@ mod tests {
|
|||
assert_eq!(path.ends_with_path(&child), $exp);
|
||||
}
|
||||
);
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a\\b\\c", "c", true);
|
||||
t!(s: "a\\b\\c", "d", false);
|
||||
|
@ -2117,7 +2117,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_path_relative_from() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $other:expr, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -2130,7 +2130,7 @@ mod tests {
|
|||
res.as_ref().and_then(|x| x.as_str()));
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a\\b\\c", "a\\b", Some("c"));
|
||||
t!(s: "a\\b\\c", "a\\b\\d", Some("..\\c"));
|
||||
|
@ -2251,7 +2251,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_str_components() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -2265,7 +2265,7 @@ mod tests {
|
|||
assert_eq!(comps, exp);
|
||||
}
|
||||
);
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: b"a\\b\\c", ["a", "b", "c"]);
|
||||
t!(s: "a\\b\\c", ["a", "b", "c"]);
|
||||
|
@ -2309,7 +2309,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_components_iter() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
(s: $path:expr, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -2321,7 +2321,7 @@ mod tests {
|
|||
assert_eq!(comps, exp);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(s: "a\\b\\c", [b"a", b"b", b"c"]);
|
||||
t!(s: ".", [b"."]);
|
||||
|
@ -2330,7 +2330,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_make_non_verbatim() {
|
||||
macro_rules! t(
|
||||
macro_rules! t {
|
||||
($path:expr, $exp:expr) => (
|
||||
{
|
||||
let path = Path::new($path);
|
||||
|
@ -2339,7 +2339,7 @@ mod tests {
|
|||
assert!(make_non_verbatim(&path) == exp);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
t!(r"\a\b\c", Some(r"\a\b\c"));
|
||||
t!(r"a\b\c", Some(r"a\b\c"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue