~ubuntu-branches/ubuntu/utopic/click/utopic

« back to all changes in this revision

Viewing changes to tests/integration/test_verify.py

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Michael Vogt, Colin Watson
  • Date: 2014-08-20 17:52:40 UTC
  • Revision ID: package-import@ubuntu.com-20140820175240-t8pum8t6rkly8msx
Tags: 0.4.31.1
[ Michael Vogt ]
* Add "click info" interface to get manifest corresponding to file in
  installed package (LP: #1324853).
* Add support for click package gpg signatures (LP: #1330770).

[ Colin Watson ]
* Ugly hack to get coverage reporting working again with gcovr 3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
class TestVerify(ClickTestCase):
24
24
    def test_verify_ok(self):
25
 
        name = "com.ubuntu.verify-ok"
 
25
        name = "com.example.verify-ok"
26
26
        path_to_click = self._make_click(name)
27
27
        output = subprocess.check_output([
28
 
            self.click_binary, "verify", "--force-missing-framework",
 
28
            self.click_binary, "verify",
 
29
            "--force-missing-framework",
 
30
            "--allow-unauthenticated",
29
31
            path_to_click], universal_newlines=True)
30
32
        self.assertEqual(output, "")