~ubuntu-branches/ubuntu/quantal/bzr-builder/quantal

« back to all changes in this revision

Viewing changes to tests/test_deb_util.py

  • Committer: Package Import Robot
  • Author(s): Logan Rosen
  • Date: 2012-06-10 02:45:03 UTC
  • mfrom: (1.1.6) (12.1.2 precise)
  • Revision ID: package-import@ubuntu.com-20120610024503-4syoetggxq6qr1lp
Tags: 0.7.3-0ubuntu1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# bzr-builder: a bzr plugin to construct trees based on recipes
 
2
# Copyright 2009 Canonical Ltd.
 
3
 
 
4
# This program is free software: you can redistribute it and/or modify it 
 
5
# under the terms of the GNU General Public License version 3, as published 
 
6
# by the Free Software Foundation.
 
7
 
 
8
# This program is distributed in the hope that it will be useful, but 
 
9
# WITHOUT ANY WARRANTY; without even the implied warranties of 
 
10
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR 
 
11
# PURPOSE.  See the GNU General Public License for more details.
 
12
 
 
13
# You should have received a copy of the GNU General Public License along 
 
14
# with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 
 
16
from bzrlib.plugins.builder.deb_util import target_from_dput
 
17
from bzrlib.tests import (
 
18
        TestCase,
 
19
        )
 
20
 
 
21
 
 
22
class TestTargetFromDPut(TestCase):
 
23
 
 
24
    def test_default_ppa(self):
 
25
        self.assertEqual(('team-name', 'ppa'), target_from_dput('ppa:team-name'))
 
26
 
 
27
    def test_named_ppa(self):
 
28
        self.assertEqual(('team', 'ppa2'), target_from_dput('ppa:team/ppa2'))