summaryrefslogtreecommitdiffstats
path: root/src/report-python/test_problem_data2
blob: 3d3692b971f498d8c964dd6505144023dedb300b (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/python

from report import *

cd = problem_data()
cd.add("foo", "bar")

print "foo:", cd.get("foo")
print "nonexistent:", cd.get("nonexistent")
print "done"