From 025671a5aa9e63004c61932d55c5a54ee339a53e Mon Sep 17 00:00:00 2001 From: BenjamenMeyer Date: Sat, 7 May 2016 04:45:45 +0000 Subject: [PATCH] Bug Fix: Changes per the new org Closes #39 --- CONTRIBUTING.rst | 6 +++--- README.rst | 12 ++++++------ docs/changes/index.rst | 1 + docs/changes/latest.rst | 16 ++++++++++++++++ setup.py | 4 ++-- 5 files changed, 28 insertions(+), 11 deletions(-) create mode 100644 docs/changes/latest.rst diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 1d83749..7cc07ef 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -95,8 +95,8 @@ Make a successful contribution, and your name will be immortalized in the `AUTHORS`_ file! Thanks for your help. You make this project possible. -.. _Issues: https://github.com/BenjamenMeyer/stackInABox/issues -.. _Milestones: https://github.com/BenjamenMeyer/stackInABox/milestones +.. _Issues: https://github.com/TestInABox/stackInABox/issues +.. _Milestones: https://github.com/TestInABox/stackInABox/milestones .. _pep8: https://pypi.python.org/pypi/pep8 -.. _AUTHORS: https://github.com/BenjamenMeyer/stackInABox/blob/master/AUTHORS +.. _AUTHORS: https://github.com/TestInABox/stackInABox/blob/master/AUTHORS diff --git a/README.rst b/README.rst index f1b9add..af9e1bb 100644 --- a/README.rst +++ b/README.rst @@ -4,12 +4,12 @@ Stack-In-A-Box Testing framework for RESTful APIs -.. image:: https://travis-ci.org/BenjamenMeyer/stackInABox.svg?branch=master - :target: https://travis-ci.org/BenjamenMeyer/stackInABox +.. image:: https://travis-ci.org/TestInABox/stackInABox.svg?branch=master + :target: https://travis-ci.org/TestInABox/stackInABox :alt: Travis-CI Status -.. image:: https://coveralls.io/repos/BenjamenMeyer/stackInABox/badge.svg - :target: https://coveralls.io/r/BenjamenMeyer/stackInABox +.. image:: https://coveralls.io/repos/TestInABox/stackInABox/badge.svg + :target: https://coveralls.io/r/TestInABox/stackInABox :alt: Coverage Status ======== @@ -57,7 +57,7 @@ Why not use framework X? ======================== This project initially setup to provide mock-ups of the OpenStack Keystone and Swift APIs. In doing so other frameworks, such as ``mimic`` (https://github.com/rackerlabs/mimic) were considered. -However, they did not meet the goals set out above. This framework was then built and initially provided the Keystone module that is now part of ``OpenStack-In-A-Box`` (https://github.com/BenjamenMeyer/openstackinabox). +However, they did not meet the goals set out above. This framework was then built and initially provided the Keystone module that is now part of ``OpenStack-In-A-Box`` (https://github.com/TestInABox/openstackinabox). This framework now makes it easy to build services that can be integrated with one of many unit testing frameworks, f.e httpretty, to provide a consistent, reliable unit testing framework that essentially merges the API/Integration-level tests into the more specific unit tests. It does not, however, replace a proper Integration Test as the responses (in terms of time and integration) will likely be different; but it does allow the unit tests to be sufficient to catch the coding errors early on so that you can focus on the real integration problems with the Integration-level tests. @@ -74,7 +74,7 @@ Here's what is currently provided: - A plug-in-play utility set for several testing frameworks so you the developer can choose which fits your needs best - An example HelloWorld Service to show the basics -Note: The ``OpenStack-In-A-Box`` (https://github.com/BenjamenMeyer/openstackinabox) provides a more advanced example of building a Stack-In-A-Box Service. +Note: The ``OpenStack-In-A-Box`` (https://github.com/TestInABox/openstackinabox) provides a more advanced example of building a Stack-In-A-Box Service. ======================= Working with Frameworks diff --git a/docs/changes/index.rst b/docs/changes/index.rst index 74b7169..947a6e6 100644 --- a/docs/changes/index.rst +++ b/docs/changes/index.rst @@ -3,6 +3,7 @@ ChangeLog .. toctree:: + latest 0.9 <0.9> 0.8 <0.8> 0.7 <0.7> diff --git a/docs/changes/latest.rst b/docs/changes/latest.rst new file mode 100644 index 0000000..e1e7f76 --- /dev/null +++ b/docs/changes/latest.rst @@ -0,0 +1,16 @@ +.. _latest: + +ChangeLog for Stack-In-A-Box (latest) +===================================== + +New +--- + +- StackInABox moved to a new organization in GitHub + +Breaking Changes +---------------- + +Fixed +----- + diff --git a/setup.py b/setup.py index 3cfeb51..88616ca 100644 --- a/setup.py +++ b/setup.py @@ -8,9 +8,9 @@ version='0.10', description='RESTful API Testing Suite', license='Apache License 2.0', - url='https://github.com/BenjamenMeyer/stackInABox', + url='https://github.com/TestInABox/stackInABox', author='Benjamen R. Meyer', - author_email='ben.meyer@rackspace.com', + author_email='bm_witness@yahoo.com', install_requires=REQUIRES, test_suite='stackinabox', packages=find_packages(exclude=['tests*', 'stackinabox/tests']),