pub-just 1.37.0

🤖 Just a command runner
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::*;

#[test]
fn trailing_newlines_are_stripped() {
  Test::new()
    .shell(false)
    .args(["--evaluate", "foos"])
    .justfile(
      "
set shell := ['python3', '-c']

foos := `print('foo' * 4)`
      ",
    )
    .stdout("foofoofoofoo")
    .run();
}