File: t0100-help.sh

package info (click to toggle)
stgit 0.19-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,748 kB
  • sloc: python: 10,558; sh: 5,739; lisp: 2,678; makefile: 142; perl: 42
file content (15 lines) | stat: -rwxr-xr-x 195 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

test_description='Run "stg help"'

. ./test-lib.sh

test_expect_success 'Run "stg help"' '
    stg help
    '

test_expect_success 'Run "stg --help"' '
    stg --help
    '

test_done