File: test_encode_basestring_ascii.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 (20 lines) | stat: -rw-r--r-- 571 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import six
import platform
import unittest

from . import CommentJsonTest

if six.PY2:
    from json.tests.test_encode_basestring_ascii import TestEncodeBasestringAscii
else:
    from test.test_json.test_encode_basestring_ascii import TestEncodeBasestringAscii

version = platform.sys.version_info


class TestCommentJsonEncodeBasestringAscii(TestEncodeBasestringAscii, CommentJsonTest):

    @unittest.skip('Skip this test since commentjson does not support the API '
                   'used in the test case.')
    def test_encode_basestring_ascii(self):
        pass