public
Description: S3 Proxy for Google App Engine
Homepage: http://shrub.appspot.com
Clone URL: git://github.com/gabriel/shrub.git
gabriel (author)
Sun Aug 09 17:03:57 -0700 2009
commit  c1522f949748263a75724ebd8d2fe15e75a45d81
tree    a27265880616a4fdb09701c9bdc64c957fe84b76
parent  cf47d10b23cff31a0f271c1e080220d71fd8966f
shrub / test.py
100644 17 lines (14 sloc) 0.344 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# !/usr/bin/env python
#
# Copyright 2008 Gabriel Handford
#
 
import sys
import os
import logging
sys.path = [
  os.path.join(os.path.dirname(__file__), "lib"),
  os.path.join(os.path.dirname(__file__), "test"),
  os.path.join(os.path.dirname(__file__), "test", "lib") ] + sys.path
 
import gaeunit
 
if __name__ == '__main__':
  gaeunit.main()