* infrastructure for authkit
* menu generation code * improved templates * database and basic role setup in websetup.py
This commit is contained in:
parent
096df406b8
commit
55124e861f
20 changed files with 431 additions and 68 deletions
7
gnuviechadminweb/tests/functional/test_auth.py
Normal file
7
gnuviechadminweb/tests/functional/test_auth.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from gnuviechadminweb.tests import *
|
||||
|
||||
class TestAuthController(TestController):
|
||||
|
||||
def test_index(self):
|
||||
response = self.app.get(url_for(controller='auth'))
|
||||
# Test response...
|
7
gnuviechadminweb/tests/functional/test_login.py
Normal file
7
gnuviechadminweb/tests/functional/test_login.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from gnuviechadminweb.tests import *
|
||||
|
||||
class TestLoginController(TestController):
|
||||
|
||||
def test_index(self):
|
||||
response = self.app.get(url_for(controller='login'))
|
||||
# Test response...
|
7
gnuviechadminweb/tests/functional/test_menu.py
Normal file
7
gnuviechadminweb/tests/functional/test_menu.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from gnuviechadminweb.tests import *
|
||||
|
||||
class TestMenuController(TestController):
|
||||
|
||||
def test_index(self):
|
||||
response = self.app.get(url_for(controller='menu'))
|
||||
# Test response...
|
Loading…
Add table
Add a link
Reference in a new issue