5c7da81c803ea110b8e25530f5df3af2e7eeff4e
Hanno Böck add codingstyle and json li...

Hanno Böck authored 4 years ago

1) import unittest
2) import glob
3) import json
4) import sys
5) import difflib
6) 
7) 
8) class TestJsonLint(unittest.TestCase):
Hanno Böck disable jsonlint test on py...

Hanno Böck authored 4 years ago

9) 
10)     @unittest.skipIf(sys.version_info < (3, 6, 0),
11)                      "json.dumps force-sorts on python 3.5")