summaryrefslogtreecommitdiffstats
path: root/Lib/json/tests/test_speedups.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/json/tests/test_speedups.py')
-rw-r--r--Lib/json/tests/test_speedups.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/Lib/json/tests/test_speedups.py b/Lib/json/tests/test_speedups.py
new file mode 100644
index 0000000..8ff9a38
--- /dev/null
+++ b/Lib/json/tests/test_speedups.py
@@ -0,0 +1,15 @@
+import decimal
+from unittest import TestCase
+
+from json import decoder
+from json import encoder
+
+class TestSpeedups(TestCase):
+ def test_scanstring(self):
+ self.assertEquals(decoder.scanstring.__module__, "_json")
+ self.assert_(decoder.scanstring is decoder.c_scanstring)
+
+ def test_encode_basestring_ascii(self):
+ self.assertEquals(encoder.encode_basestring_ascii.__module__, "_json")
+ self.assert_(encoder.encode_basestring_ascii is
+ encoder.c_encode_basestring_ascii)