コード例 #1
0
    def test_list(self):
        repository = Mock()

        # test
        remotes = Remote.list(repository)

        # validation
        self.assertEqual(remotes, repository.impl.remote_list.return_value)
コード例 #2
0
ファイル: test_lib.py プロジェクト: pcreech/pulp_ostree
    def test_list(self):
        repository = Mock()

        # test
        remotes = Remote.list(repository)

        # validation
        self.assertEqual(remotes, repository.impl.remote_list.return_value)