Monty Taylor 74929e70cc Aligned tests with OpenStack standards.
Made them run as testtools.TestCase tests.
Removed nose references.
2013-03-28 03:40:38 +01:00

8 lines
153 B
Python
Executable File

#!/usr/bin/env python
import json
import sys
params = json.loads(sys.stdin.read())
x = params["x"]
if x is None: raise Exception("undefined: x")
print x