mirror of
https://github.com/th3r00t/pyShelf.git
synced 2026-04-28 01:59:35 -04:00
Added HTTP server and response
This commit is contained in:
11
tests/test_bookserver.py
Normal file
11
tests/test_bookserver.py
Normal file
@@ -0,0 +1,11 @@
|
||||
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())
|
||||
Reference in New Issue
Block a user