mirror of
https://github.com/th3r00t/pyShelf.git
synced 2026-04-28 01:59:35 -04:00
12 lines
255 B
Python
12 lines
255 B
Python
import unittest
|
|
import sys
|
|
sys.path.insert(0, '../lib')
|
|
sys.path.insert(1, '../')
|
|
from pyShelf import BookServer
|
|
|
|
class BookServerTest(unittest.TestCase):
|
|
|
|
def test_bookserver(self):
|
|
server = BookServer()
|
|
self.assertTrue(server.run())
|