Child: [6a2ec3] (diff)

Download this file

test_tasks.py    25 lines (17 with data), 594 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
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.tasks import repo_tasks
class TestHgReactors(unittest.TestCase):
def setUp(self):
setup_basic_test()
setup_global_objects()
h.set_context('test', 'src-hg')
ThreadLocalORMSession.flush_all()
ThreadLocalORMSession.close_all()
def test_init(self):
repo_tasks.init()
def test_refresh_commit(self):
repo_tasks.refresh()