mirror of
https://github.com/undera/pylgbst.git
synced 2020-11-18 19:37:26 -08:00
14 lines
273 B
Python
14 lines
273 B
Python
import logging
|
|
import unittest
|
|
|
|
from demo import demo_all
|
|
from pylegoboost.comms import ConnectionMock
|
|
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
|
|
|
|
class GeneralTest(unittest.TestCase):
|
|
def test_capabilities(self):
|
|
conn = ConnectionMock()
|
|
demo_all(conn)
|