Parent: [c2f5ac] (diff)

Child: [3abb2e] (diff)

Download this file

test_reactors.py    24 lines (15 with data), 524 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
import unittest
from pylons import c, g
from ming.orm import ThreadLocalORMSession
from pyforge.tests import helpers
from pyforge.lib import helpers as h
from forgehg.reactors import reactors as R
class TestHgReactors(unittest.TestCase):
def setUp(self):
helpers.setup_basic_test()
helpers.setup_global_objects()
h.set_context('test', 'src-hg')
ThreadLocalORMSession.flush_all()
ThreadLocalORMSession.close_all()
def test_init(self):
R.init('scm.hg.init', {})