File tree 1 file changed +0
-14
lines changed
pulp_python/tests/functional/api
1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change 3
3
4
4
from requests .exceptions import HTTPError
5
5
from pulp_smash import api , config , utils
6
- from pulp_smash .pulp3 .constants import REPO_PATH
7
- from pulp_smash .pulp3 .utils import gen_repo
8
6
9
7
from pulp_python .tests .functional .constants import (
10
8
PYTHON_REMOTE_PATH ,
@@ -25,21 +23,9 @@ class CRUDRemotesTestCase(unittest.TestCase):
25
23
def setUpClass (cls ):
26
24
"""
27
25
Create class-wide variables.
28
-
29
- In order to create a remote a repository has to be created first.
30
-
31
26
"""
32
27
cls .cfg = config .get_config ()
33
28
cls .client = api .Client (cls .cfg , api .json_handler )
34
- cls .remote = {}
35
- cls .repo = cls .client .post (REPO_PATH , gen_repo ())
36
-
37
- @classmethod
38
- def tearDownClass (cls ):
39
- """
40
- Clean class-wide variable.
41
- """
42
- cls .client .delete (cls .repo ['_href' ])
43
29
44
30
def test_01_create_remote (self ):
45
31
"""
You can’t perform that action at this time.
0 commit comments