コード例 #1
0
ファイル: test_apt.py プロジェクト: mrlesmithjr/ansible-1
 def test_pkgname_expands(self):
     foo = ["apt*"]
     m_mock = Mock()
     self.assertEqual(
         expand_pkgspec_from_fnmatches(m_mock, foo, self.fake_cache),
         ["apt", "apt-utils"])
コード例 #2
0
ファイル: test_apt.py プロジェクト: mrlesmithjr/ansible-1
 def test_version_wildcard(self):
     foo = ["apt=1.0*"]
     self.assertEqual(
         expand_pkgspec_from_fnmatches(None, foo, self.fake_cache), foo)
コード例 #3
0
ファイル: test_apt.py プロジェクト: mrlesmithjr/ansible-1
 def test_pkgname_wildcard_version_wildcard(self):
     foo = ["apt*=1.0*"]
     m_mock = Mock()
     self.assertEqual(
         expand_pkgspec_from_fnmatches(m_mock, foo, self.fake_cache),
         ['apt', 'apt-utils'])
コード例 #4
0
ファイル: test_apt.py プロジェクト: mrlesmithjr/ansible-1
 def test_trivial(self):
     foo = ["apt"]
     self.assertEqual(
         expand_pkgspec_from_fnmatches(None, foo, self.fake_cache), foo)