1a5f07c672
- Revert #1475 - Add a test that arguments with different path prefixes are allowed
10 lines
162 B
Rust
10 lines
162 B
Rust
use super::*;
|
|
|
|
#[test]
|
|
fn argument_with_different_path_prefix_is_allowed() {
|
|
Test::new()
|
|
.justfile("foo bar:")
|
|
.args(["./foo", "../bar"])
|
|
.run();
|
|
}
|