Lines Matching refs:URITemplate
2 from uritemplate import URITemplate, expand, partial, variables
372 t = URITemplate(k)
396 t = URITemplate(uri)
412 t = URITemplate(uri)
420 t = URITemplate('https://api.github.com/users{/user}')
427 t = URITemplate('https://api.github.com/users{/user}{/repo}')
436 t = URITemplate(uri)
444 self.assertEqual(hash(URITemplate(uri)), hash(uri))
448 t = URITemplate(uri)
455 t = URITemplate('{foo}')
461 t = URITemplate('{foo}')
468 t = URITemplate('{/foo*}')
514 t = URITemplate('{foo}')
527 t = URITemplate('{foo}')
534 t = URITemplate('{foo}')
535 u = URITemplate('{foo}')
542 t = URITemplate('')
622 self.assertEqual(partial(self.uri), URITemplate(self.uri))
626 URITemplate('https://api.github.com/users/sigmavirus24{/other}')
631 URITemplate(self.uri).variable_names)