File: test_conncache.py

package info (click to toggle)
clientcookie 1.3.0-1.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 596 kB
  • ctags: 773
  • sloc: python: 5,366; makefile: 49
file content (14 lines) | stat: -rw-r--r-- 283 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""Tests for ClientCookie._ConnCache module."""

import unittest, sys

class ConnCacheTests(unittest.TestCase):

    def test_ConnectionCache(self):
        from ClientCookie import ConnectionCache
        ConnectionCache()


if __name__ == "__main__":
    #unittest.main()
    pass