Unit test Python library for testing cache systems like varnish
Based on the work of @onyxfish (https://gist.github.com/onyxfish)
- cachetest.py : productive
| #!/usr/bin/env python | |
| import cookielib | |
| import json | |
| import re | |
| import random | |
| import unittest | |
| import requests | |
| from wordpress_xmlrpc import Client, WordPressComment, WordPressPost |
Unit test Python library for testing cache systems like varnish
Based on the work of @onyxfish (https://gist.github.com/onyxfish)