Home | History | Annotate | Download | only in recipes

Lines Matching refs:app

18 ok(run(app(["openssl"])),
19 "Run openssl app with no args");
21 ok(run(app(["openssl", "help"])),
22 "Run openssl app with help");
24 ok(!run(app(["openssl", "-wrong"])),
25 "Run openssl app with incorrect arg");
27 ok(run(app(["openssl", "-help"])),
28 "Run openssl app with -help");
30 ok(run(app(["openssl", "--help"])),
31 "Run openssl app with --help");