mirror of
https://github.com/wassname/catalyst.git
synced 2026-06-30 23:26:38 +08:00
11 lines
325 B
Python
11 lines
325 B
Python
from unittest2 import TestCase
|
|
from zipline.test.test_messaging import SimulatorTestCase
|
|
from zipline.test.dummy import ThreadPoolExecutorMixin
|
|
|
|
|
|
class ThreadPoolExecutor(SimulatorTestCase, TestCase):
|
|
|
|
def test_universe(self):
|
|
# first order logic is working today. Yay!
|
|
self.assertTrue(True != False)
|