source:
pyson/test/testURI.py@
189
Last change on this file since 189 was 186, checked in by , 3 years ago | |
---|---|
File size: 265 bytes |
Rev | Line | |
---|---|---|
[186] | 1 | |
2 | import unittest | |
3 | ||
4 | from uri import URI | |
5 | ||
6 | from pyson.JsonValue import JsonValue, getJsonValue | |
7 | ||
8 | ||
9 | class testURI(unittest.TestCase): | |
10 | def testURI(self): | |
11 | uristr = 'ws://localhost:8080/profilesserver/websocket/get/party/party1' | |
12 | self.assertEqual(uristr,str(URI(uristr))) |
Note:
See TracBrowser
for help on using the repository browser.