File: __init__.py

package info (click to toggle)
python-commentjson 0.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 184 kB
  • sloc: python: 520; makefile: 4
file content (9 lines) | stat: -rw-r--r-- 191 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
import unittest

import commentjson


class CommentJsonTest(unittest.TestCase):
    json = commentjson
    loads = staticmethod(commentjson.loads)
    dumps = staticmethod(commentjson.dumps)