main
Last change
on this file was
42bd667,
checked in by David Fuertes <dfuertes@…>, 4 years ago
|
Historial Limpio
|
-
Property mode set to
100644
|
File size:
466 bytes
|
Line | |
---|
1 | #!/usr/bin/python3 |
---|
2 | |
---|
3 | # BaseTest containt all commons tasks and variables |
---|
4 | try: |
---|
5 | import unittest2 as unittest #for Python <= 2.6 |
---|
6 | except: |
---|
7 | import unittest |
---|
8 | ''' |
---|
9 | from gluon.globals import Request |
---|
10 | from gluon.globals import Storage |
---|
11 | ''' |
---|
12 | |
---|
13 | class BaseTest(unittest.TestCase): |
---|
14 | |
---|
15 | @classmethod |
---|
16 | def setUpClass(self): |
---|
17 | pass |
---|
18 | |
---|
19 | |
---|
20 | def setUp(self): |
---|
21 | pass |
---|
22 | #self.request = Request(Storage()) # Use a clean Request object |
---|
Note: See
TracBrowser
for help on using the repository browser.