source: pyson/test/testURI.py@ 1271

Last change on this file since 1271 was 298, checked in by wouter, 3 years ago

#100 use uri 2.0.0

File size: 269 bytes
RevLine 
[186]1
2import unittest
3
[298]4from uri.uri import URI
[186]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.