Skip to content

Commit

Permalink
Merge 04df5c9 into ecd110d
Browse files Browse the repository at this point in the history
  • Loading branch information
Ichimonji10 committed Nov 16, 2015
2 parents ecd110d + 04df5c9 commit d58d1af
Show file tree
Hide file tree
Showing 8 changed files with 686 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ developers, not a gospel.
api/pulp_smash.tests.platform.api_v2.test_repository
api/pulp_smash.tests.platform.api_v2.test_search
api/pulp_smash.tests.platform.api_v2.test_user
api/pulp_smash.tests.rpm
api/pulp_smash.tests.rpm.api_v2
api/pulp_smash.tests.rpm.api_v2.test_sync_publish
api/pulp_smash.utils
api/tests
api/tests.test_config
6 changes: 6 additions & 0 deletions docs/api/pulp_smash.tests.rpm.api_v2.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
`pulp_smash.tests.rpm.api_v2`
=============================

Location: :doc:`/index` → :doc:`/api` → :doc:`/api/pulp_smash.tests.rpm.api_v2`

.. automodule:: pulp_smash.tests.rpm.api_v2
7 changes: 7 additions & 0 deletions docs/api/pulp_smash.tests.rpm.api_v2.test_sync_publish.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
`pulp_smash.tests.rpm.api_v2.test_sync_publish`
===============================================

Location: :doc:`/index` → :doc:`/api` →
:doc:`/api/pulp_smash.tests.rpm.api_v2.test_sync_publish`

.. automodule:: pulp_smash.tests.rpm.api_v2.test_sync_publish
6 changes: 6 additions & 0 deletions docs/api/pulp_smash.tests.rpm.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
`pulp_smash.tests.rpm`
======================

Location: :doc:`/index` → :doc:`/api` → :doc:`/api/pulp_smash.tests.rpm`

.. automodule:: pulp_smash.tests.rpm
8 changes: 8 additions & 0 deletions pulp_smash/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,14 @@
"""

REPOSITORY_PATH = '/pulp/api/v2/repositories/'
"""See: `Repository APIs`_.
.. _Repository APIs:
http://pulp.readthedocs.org/en/latest/dev-guide/integration/rest-api/repo/index.html
"""

USER_PATH = '/pulp/api/v2/users/'
"""See: `User APIs`_.
Expand Down
3 changes: 3 additions & 0 deletions pulp_smash/tests/rpm/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# coding=utf-8
"""Functional tests for Pulp's RPM plugin."""
from __future__ import unicode_literals
3 changes: 3 additions & 0 deletions pulp_smash/tests/rpm/api_v2/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# coding=utf-8
"""Tests that communicate with the server via the v2 API."""
from __future__ import unicode_literals
Loading

0 comments on commit d58d1af

Please sign in to comment.