Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
5cc06fde
Kaydet (Commit)
5cc06fde
authored
Agu 08, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
#18273: merge with 3.3.
üst
a27b83ad
66f2ea04
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
25 additions
and
44 deletions
+25
-44
test_json.py
Lib/test/test_json.py
+0
-17
__init__.py
Lib/test/test_json/__init__.py
+2
-11
__main__.py
Lib/test/test_json/__main__.py
+4
-0
test_decode.py
Lib/test/test_json/test_decode.py
+1
-1
test_default.py
Lib/test/test_json/test_default.py
+1
-1
test_dump.py
Lib/test/test_json/test_dump.py
+1
-1
test_encode_basestring_ascii.py
Lib/test/test_json/test_encode_basestring_ascii.py
+1
-1
test_fail.py
Lib/test/test_json/test_fail.py
+1
-1
test_float.py
Lib/test/test_json/test_float.py
+1
-1
test_indent.py
Lib/test/test_json/test_indent.py
+1
-1
test_pass1.py
Lib/test/test_json/test_pass1.py
+1
-1
test_pass2.py
Lib/test/test_json/test_pass2.py
+1
-1
test_pass3.py
Lib/test/test_json/test_pass3.py
+1
-1
test_recursion.py
Lib/test/test_json/test_recursion.py
+1
-1
test_scanstring.py
Lib/test/test_json/test_scanstring.py
+1
-1
test_separators.py
Lib/test/test_json/test_separators.py
+1
-1
test_speedups.py
Lib/test/test_json/test_speedups.py
+1
-1
test_tool.py
Lib/test/test_json/test_tool.py
+0
-0
test_unicode.py
Lib/test/test_json/test_unicode.py
+1
-1
Makefile.pre.in
Makefile.pre.in
+1
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_json.py
deleted
100644 → 0
Dosyayı görüntüle @
a27b83ad
"""Tests for json.
The tests for json are defined in the json.tests package;
the test_suite() function there returns a test suite that's ready to
be run.
"""
from
test
import
json_tests
import
test.support
def
test_main
():
test
.
support
.
run_unittest
(
json_tests
.
test_suite
())
if
__name__
==
"__main__"
:
test_main
()
Lib/test/
json_tests
/__init__.py
→
Lib/test/
test_json
/__init__.py
Dosyayı görüntüle @
5cc06fde
...
...
@@ -44,12 +44,12 @@ class TestCTest(CTest):
here
=
os
.
path
.
dirname
(
__file__
)
def
test_suite
(
):
def
load_tests
(
*
args
):
suite
=
additional_tests
()
loader
=
unittest
.
TestLoader
()
for
fn
in
os
.
listdir
(
here
):
if
fn
.
startswith
(
"test"
)
and
fn
.
endswith
(
".py"
):
modname
=
"test.
json_tests
."
+
fn
[:
-
3
]
modname
=
"test.
test_json
."
+
fn
[:
-
3
]
__import__
(
modname
)
module
=
sys
.
modules
[
modname
]
suite
.
addTests
(
loader
.
loadTestsFromModule
(
module
))
...
...
@@ -62,12 +62,3 @@ def additional_tests():
suite
.
addTest
(
TestPyTest
(
'test_pyjson'
))
suite
.
addTest
(
TestCTest
(
'test_cjson'
))
return
suite
def
main
():
suite
=
test_suite
()
runner
=
unittest
.
TextTestRunner
()
runner
.
run
(
suite
)
if
__name__
==
'__main__'
:
sys
.
path
.
insert
(
0
,
os
.
path
.
dirname
(
os
.
path
.
dirname
(
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
)))))
main
()
Lib/test/test_json/__main__.py
0 → 100644
Dosyayı görüntüle @
5cc06fde
import
unittest
from
test.test_json
import
load_tests
unittest
.
main
()
Lib/test/
json_tests
/test_decode.py
→
Lib/test/
test_json
/test_decode.py
Dosyayı görüntüle @
5cc06fde
import
decimal
from
io
import
StringIO
from
collections
import
OrderedDict
from
test.
json_tests
import
PyTest
,
CTest
from
test.
test_json
import
PyTest
,
CTest
class
TestDecode
:
...
...
Lib/test/
json_tests
/test_default.py
→
Lib/test/
test_json
/test_default.py
Dosyayı görüntüle @
5cc06fde
from
test.
json_tests
import
PyTest
,
CTest
from
test.
test_json
import
PyTest
,
CTest
class
TestDefault
:
...
...
Lib/test/
json_tests
/test_dump.py
→
Lib/test/
test_json
/test_dump.py
Dosyayı görüntüle @
5cc06fde
from
io
import
StringIO
from
test.
json_tests
import
PyTest
,
CTest
from
test.
test_json
import
PyTest
,
CTest
from
test.support
import
bigmemtest
,
_1G
...
...
Lib/test/
json_tests
/test_encode_basestring_ascii.py
→
Lib/test/
test_json
/test_encode_basestring_ascii.py
Dosyayı görüntüle @
5cc06fde
from
collections
import
OrderedDict
from
test.
json_tests
import
PyTest
,
CTest
from
test.
test_json
import
PyTest
,
CTest
CASES
=
[
...
...
Lib/test/
json_tests
/test_fail.py
→
Lib/test/
test_json
/test_fail.py
Dosyayı görüntüle @
5cc06fde
from
test.
json_tests
import
PyTest
,
CTest
from
test.
test_json
import
PyTest
,
CTest
import
re
# 2007-10-05
...
...
Lib/test/
json_tests
/test_float.py
→
Lib/test/
test_json
/test_float.py
Dosyayı görüntüle @
5cc06fde
import
math
from
test.
json_tests
import
PyTest
,
CTest
from
test.
test_json
import
PyTest
,
CTest
class
TestFloat
:
...
...
Lib/test/
json_tests
/test_indent.py
→
Lib/test/
test_json
/test_indent.py
Dosyayı görüntüle @
5cc06fde
import
textwrap
from
io
import
StringIO
from
test.
json_tests
import
PyTest
,
CTest
from
test.
test_json
import
PyTest
,
CTest
class
TestIndent
:
...
...
Lib/test/
json_tests
/test_pass1.py
→
Lib/test/
test_json
/test_pass1.py
Dosyayı görüntüle @
5cc06fde
from
test.
json_tests
import
PyTest
,
CTest
from
test.
test_json
import
PyTest
,
CTest
# from http://json.org/JSON_checker/test/pass1.json
...
...
Lib/test/
json_tests
/test_pass2.py
→
Lib/test/
test_json
/test_pass2.py
Dosyayı görüntüle @
5cc06fde
from
test.
json_tests
import
PyTest
,
CTest
from
test.
test_json
import
PyTest
,
CTest
# from http://json.org/JSON_checker/test/pass2.json
...
...
Lib/test/
json_tests
/test_pass3.py
→
Lib/test/
test_json
/test_pass3.py
Dosyayı görüntüle @
5cc06fde
from
test.
json_tests
import
PyTest
,
CTest
from
test.
test_json
import
PyTest
,
CTest
# from http://json.org/JSON_checker/test/pass3.json
...
...
Lib/test/
json_tests
/test_recursion.py
→
Lib/test/
test_json
/test_recursion.py
Dosyayı görüntüle @
5cc06fde
from
test.
json_tests
import
PyTest
,
CTest
from
test.
test_json
import
PyTest
,
CTest
class
JSONTestObject
:
...
...
Lib/test/
json_tests
/test_scanstring.py
→
Lib/test/
test_json
/test_scanstring.py
Dosyayı görüntüle @
5cc06fde
import
sys
from
test.
json_tests
import
PyTest
,
CTest
from
test.
test_json
import
PyTest
,
CTest
class
TestScanstring
:
...
...
Lib/test/
json_tests
/test_separators.py
→
Lib/test/
test_json
/test_separators.py
Dosyayı görüntüle @
5cc06fde
import
textwrap
from
test.
json_tests
import
PyTest
,
CTest
from
test.
test_json
import
PyTest
,
CTest
class
TestSeparators
:
...
...
Lib/test/
json_tests
/test_speedups.py
→
Lib/test/
test_json
/test_speedups.py
Dosyayı görüntüle @
5cc06fde
from
test.
json_tests
import
CTest
from
test.
test_json
import
CTest
class
TestSpeedups
(
CTest
):
...
...
Lib/test/
json_tests
/test_tool.py
→
Lib/test/
test_json
/test_tool.py
Dosyayı görüntüle @
5cc06fde
File moved
Lib/test/
json_tests
/test_unicode.py
→
Lib/test/
test_json
/test_unicode.py
Dosyayı görüntüle @
5cc06fde
from
collections
import
OrderedDict
from
test.
json_tests
import
PyTest
,
CTest
from
test.
test_json
import
PyTest
,
CTest
class
TestUnicode
:
...
...
Makefile.pre.in
Dosyayı görüntüle @
5cc06fde
...
...
@@ -1079,7 +1079,7 @@ LIBSUBDIRS= tkinter tkinter/test tkinter/test/test_tkinter \
test
/namespace_pkgs/module_and_namespace_package/a_test
\
collections concurrent concurrent/futures encodings
\
email email/mime
test
/test_email
test
/test_email/data
\
html json
test
/
json_tests
http dbm xmlrpc
\
html json
test
/
test_json
http dbm xmlrpc
\
sqlite3 sqlite3/test
\
logging csv wsgiref urllib
\
lib2to3 lib2to3/fixes lib2to3/pgen2 lib2to3/tests
\
...
...
Misc/NEWS
Dosyayı görüntüle @
5cc06fde
...
...
@@ -634,6 +634,9 @@ Library
Tests
-----
- Issue #18273: move the tests in Lib/test/json_tests to Lib/test/test_json
and make them discoverable by unittest. Patch by Zachary Ware.
- Fix a fcntl test case on KFreeBSD, Debian #708653 (Petr Salinger).
- Issue #18396: Fix spurious test failure in test_signal on Windows when
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment