Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def test_roundtrip(self):
now = str(datetime.now())
version = "0.0.1"
env = Environment(now, version)
env_as_json = env.to_json()
env_from_json = Environment.from_json(env_as_json)
assert env.__dict__ == env_from_json.__dict__