Skip to main content

Utils for testing with/without cache

Project description

switchcache
===

Test utils for testing with memcache

## Preparation

```python
from switchcache import init
class Configure:
HOSTS = ['127.0.0.1:11211']
CACHE = {
'foo': 'bar',
'fuga': 'hoge'
}
init(Configure)
```

## Decorators

```python
from cachtest import with_cache, no_cache
@with_cache
def test_with_cache():
<Cache enabled in this function>
@no_cache
def test_no_cache():
<Cache disabled in this function>
```


## "With" clause

```python
from cachtest import cache
def test():
with cache:
<Cache enabled inside "with">
<Cache disabled outside "with">
```

### Note

Make sure HOSTS point to a your testing environment.
Your current caches on memcache will be flushed & overrided.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

switchcache-0.0.2.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distributions

switchcache-0.0.2.macosx-10.9-intel.tar.gz (4.3 kB view hashes)

Uploaded Source

switchcache-0.0.2-py2.7.egg (5.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page