dbfixtures plugin for py.test.
Project description
py.test fixtures: redis, mongo, rabbitmq
Install
$ pip install pytest-dbfixtures
How to use
def test_using_redis(redisdb):
redisdb.set('woof', 'woof')
redisdb.get('woof')
def test_using_mongo(mongodb):
mongodb.test.insert({'woof': 'woof'})
mongodb.test.find_one()
def test_using_rabbit(rabbitmq):
channel = rabbitmq.channel()
Use your own configure files
Of course you can! Below you can see example configs.
pytest_dbfixtures/dbfixtures.conf
pytest_dbfixtures/redis.conf
pytest_dbfixtures/mongo.conf
pytest_dbfixtures/rabbit.conf
If you want to use your own configs pass them as arguments to py.test.
Examples:
py.test --dbfixtures-config my-dbfixtures.conf py.test --dbfixtures-config my-dbfixtures.conf --mongo-config my-mongo.conf py.test --redis-config my-redis.conf py.test --rabbit-config my-rabbit.conf
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pytest-dbfixtures-0.3.2.tar.gz
.
File metadata
- Download URL: pytest-dbfixtures-0.3.2.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15988196e54b2d6297f1ac6696f3cdb237d15959286cc3c800c631910c2409ec |
|
MD5 | 902d4e1aaf2422fde4def40abf4d6403 |
|
BLAKE2b-256 | 3598436662aa7771eec2ea039a6dcde20145f4e0f65e2e9961594b775becb433 |