1
1
mirror of https://github.com/casey/just.git synced 2024-11-28 22:00:18 +03:00
just/tests/windows.rs
2024-06-13 19:19:22 +00:00

16 lines
195 B
Rust

use super::*;
#[test]
fn bare_bash_in_shebang() {
Test::new()
.justfile(
"
default:
#!bash
echo FOO
",
)
.stdout("FOO\n")
.run();
}