-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmacros.rs
55 lines (49 loc) · 1.07 KB
/
macros.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//
// Copyright (c) 2018, The MesaLock Linux Project Contributors
// All rights reserved.
//
// This work is licensed under the terms of the BSD 3-Clause License.
// For a copy, see the LICENSE file.
//
#[macro_export]
macro_rules! util_name {
() => {
self::NAME
};
}
#[macro_export]
macro_rules! new_cmd {
() => {
Command::new(&*::BIN_PATH).arg(util_name!())
};
}
#[macro_export]
macro_rules! fixtures_dir {
() => {{
use std::env;
let mut path = env::current_dir().unwrap();
path.push("tests/fixtures");
path.push(util_name!());
path
}};
}
#[macro_export]
macro_rules! fixtures_path {
($filename:expr) => {{
let mut fixtures_path = fixtures_dir!();
fixtures_path.push($filename);
fixtures_path
}};
}
#[macro_export]
macro_rules! pred_eq_file {
($filename:expr) => {
predicate::path::eq_file(fixtures_path!($filename).as_path())
}
}
#[macro_export]
macro_rules! pred_str_contains {
($str:expr) => {
predicate::str::contains($str).from_utf8()
}
}