File: test_bugs.py

package info (click to toggle)
pygooglechart 0.4.0%2Bgit20140622-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 364 kB
  • ctags: 300
  • sloc: python: 1,501; makefile: 130; sh: 5
file content (23 lines) | stat: -rw-r--r-- 403 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import unittest
import sys
import os
import warnings

try:
	import urllib.request, urllib.parse, urllib.error
except ImportError:
	import urllib2

ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
sys.path.insert(0, ROOT)

from test.test_base import TestBase
import pygooglechart as gc


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