diff options
author | Dan McGee <dan@archlinux.org> | 2007-12-02 17:24:22 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-12-02 17:24:22 -0600 |
commit | 7341d0954194149d5659dbd33ea4b2f9f005b54a (patch) | |
tree | e80f6dfeb1a73079543b2123910fe0061fe5c764 /pactest/tests | |
parent | 32e625db1436db6ac73851d39024329afc06ece1 (diff) | |
download | pacman-7341d0954194149d5659dbd33ea4b2f9f005b54a.tar.xz |
Add 4 new pactests to get better code coverage by pactest
I started playing around with gcov today and it showed a few places in the
code that we don't test at all. This is the start of ensuring that we
execute most of the code in our codebase.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'pactest/tests')
-rw-r--r-- | pactest/tests/pacman001.py | 5 | ||||
-rw-r--r-- | pactest/tests/pacman002.py | 5 | ||||
-rw-r--r-- | pactest/tests/pacman003.py | 5 | ||||
-rw-r--r-- | pactest/tests/pacman004.py | 5 |
4 files changed, 20 insertions, 0 deletions
diff --git a/pactest/tests/pacman001.py b/pactest/tests/pacman001.py new file mode 100644 index 00000000..d467e3f2 --- /dev/null +++ b/pactest/tests/pacman001.py @@ -0,0 +1,5 @@ +self.description = "Test command line option (--version)" + +self.args = "--version" + +self.addrule("PACMAN_RETCODE=2") diff --git a/pactest/tests/pacman002.py b/pactest/tests/pacman002.py new file mode 100644 index 00000000..c0217259 --- /dev/null +++ b/pactest/tests/pacman002.py @@ -0,0 +1,5 @@ +self.description = "Test command line option (--help)" + +self.args = "--help" + +self.addrule("PACMAN_RETCODE=2") diff --git a/pactest/tests/pacman003.py b/pactest/tests/pacman003.py new file mode 100644 index 00000000..b5275943 --- /dev/null +++ b/pactest/tests/pacman003.py @@ -0,0 +1,5 @@ +self.description = "Test command line option (-S --help)" + +self.args = "-S --help" + +self.addrule("PACMAN_RETCODE=2") diff --git a/pactest/tests/pacman004.py b/pactest/tests/pacman004.py new file mode 100644 index 00000000..d8d6b102 --- /dev/null +++ b/pactest/tests/pacman004.py @@ -0,0 +1,5 @@ +self.description = "Test command line option (-v)" + +self.args = "-v" + +self.addrule("PACMAN_RETCODE=1") |