Download this file

test_reactors.py    30 lines (21 with data), 855 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
import unittest
from pylons import c, g
from ming.orm import ThreadLocalORMSession
from alluratest.controller import setup_basic_test, setup_global_objects
from allura.lib import helpers as h
from allura.lib.repository import RepositoryApp as R
class TestGitReactors(unittest.TestCase):
def setUp(self):
setup_basic_test()
setup_global_objects()
h.set_context('test', 'src-git')
ThreadLocalORMSession.flush_all()
ThreadLocalORMSession.close_all()
def test_init(self):
R._init('repo.init', dict(
project_id=str(c.project._id),
mount_point=c.app.config.options.mount_point))
def test_refresh_commit(self):
R._refresh('repo.refresh', dict(
project_id=str(c.project._id),
mount_point=c.app.config.options.mount_point))