Metadata-Version: 1.1
Name: hitchpostgres
Version: 0.6.1
Summary: Plugin to run Postgres using the Hitch testing framework.
Home-page: https://hitch.readthedocs.org/
Author: Colm O'Connor
Author-email: colm.oconnor.github@gmail.com
License: AGPL
Description: HitchPostgres
        =============
        
        HitchPostgres is a plugin for the Hitch test framework that lets you run and
        interact with Postgres in an isolated way as part of a test.
        
        Before starting the service, it runs the initdb command to create all required
        data files for a postgresql database in the .hitch directory. This means that
        whatever you do, you will not interfere with the system postgres files. The
        system postgres does not even have to be running.
        
        After starting the service, it creates any users and databases specified that
        may be required for your app to start.
        
        During the test it provides convenience functions psql, pg_dump and pg_restore
        so that you can interact with the database using IPython or in your test.
        
        Use
        ===
        
        See: https://hitchtest.readthedocs.org/en/latest/api/postgres.html
        
        
        Features
        ========
        
        * Creates data files from scratch using initdb in the .hitch directory. Complete isolation of data from system postgres.
        * Starts up on a separate thread in parallel with other services when running with HitchServe_, so that your integration tests run faster.
        * Run the server on whatever port you like.
        * Version set explicitly to prevent "works on my machine" screw ups caused by running different versions of Postgres.
        
        
        .. _HitchServe: https://github.com/hitchtest/hitchserve
        .. _DjangoRemindMe: https://github.com/hitchtest/django-remindme
        
Keywords: hitch testing framework bdd tdd declarative tests testing service postgres postgresql database
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Classifier: Environment :: Console
Classifier: Topic :: Database
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
