Skip to content

Commit 47b8f5c

Browse files
committed
Simple
1 parent 66075e5 commit 47b8f5c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

perftest

+8
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ print("Validating {0} times.".format(arguments.number))
2222

2323

2424
for name, benchmark in (
25+
(
26+
"Simple", """
27+
validator = Draft3Validator(
28+
{"type" : "object", "properties" : {"foo" : {"required" : True}}}
29+
)
30+
instance = {"foo" : 12, "bar" : 13}
31+
"""
32+
),
2533
(
2634
"Meta schema", """
2735
validator = Draft3Validator(Draft3Validator.META_SCHEMA)

0 commit comments

Comments
 (0)