def setUp(self): """Setup class.""" from uuid import uuid5, NAMESPACE_DNS self.encoder = GoodJSONEncoder() self.data = uuid5(NAMESPACE_DNS, "This is a test") self.expected = str(self.data)