Parent: [11860d] (diff)

Child: [3abb2e] (diff)

Download this file

test_git_app.py    31 lines (22 with data), 793 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import unittest
from pylons import c, g
from ming.orm import ThreadLocalORMSession
from pyforge.tests import helpers
from pyforge.lib import helpers as h
class TestGitApp(unittest.TestCase):
def setUp(self):
helpers.setup_basic_test()
helpers.setup_global_objects()
h.set_context('test', 'src-git')
ThreadLocalORMSession.flush_all()
ThreadLocalORMSession.close_all()
def test_templates(self):
assert c.app.templates.endswith('forgegit/templates')
def test_admin_menu(self):
assert len(c.app.admin_menu()) == 1
def test_uninstall(self):
c.app.uninstall(c.project)
assert g.mock_amq.pop('audit')
g.mock_amq.setup_handlers()
c.app.uninstall(c.project)
g.mock_amq.handle_all()