diff options
author | Guido Günther <agx@sigxcpu.org> | 2012-01-08 19:35:34 +0100 |
---|---|---|
committer | Guido Günther <agx@sigxcpu.org> | 2013-06-18 23:55:05 +0200 |
commit | 12dce5f8469d5a6508df518134cae133d8da6efb (patch) | |
tree | c6c7d8b4507ea5a44b76bbd4566f1b71dfc3c8ba /tests | |
parent | 75cbd9af3f63adbbaaa04187e749583be89a17e2 (diff) | |
download | git-buildpackage-12dce5f8469d5a6508df518134cae133d8da6efb.tar.gz git-buildpackage-12dce5f8469d5a6508df518134cae133d8da6efb.tar.bz2 git-buildpackage-12dce5f8469d5a6508df518134cae133d8da6efb.zip |
Add wrapper for all gbp commands
So like git you can now use gbp <command> instead of git-<command> or
gbp-<command>. The manpages and docs aren't adjusted yet.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/16_test_wrapper.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/16_test_wrapper.py b/tests/16_test_wrapper.py new file mode 100644 index 00000000..35f50bc8 --- /dev/null +++ b/tests/16_test_wrapper.py @@ -0,0 +1,29 @@ +# vim: set fileencoding=utf-8 : +# (C) 2013 Guido Günther <agx@sigxcpu.org> +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +"""Test L{gbp} command wrapper""" + +import unittest +import gbp.scripts.command + +class TestWrapper(unittest.TestCase): + + def test_invalid_command(self): + """Test if we can import a valid command""" + self.assertEqual(gbp.scripts.command.gbp_command(['argv0', 'asdf']), 2) + + def test_missing_arg(self): + self.assertEqual(gbp.scripts.command.gbp_command(['argv0']), 1) + |