source: pyson/test/testURI.py@ 189

Last change on this file since 189 was 186, checked in by wouter, 3 years ago

#80 added test showign the issue

File size: 265 bytes
RevLine 
[186]1
2import unittest
3
4from uri import URI
5
6from pyson.JsonValue import JsonValue, getJsonValue
7
8
9class 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.