Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
A
astor
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
astor
Commits
ee7a5ff7
Kaydet (Commit)
ee7a5ff7
authored
Nis 18, 2015
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add back the test from #16.
üst
af5c1a7e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
test_codegen.py
tests/test_codegen.py
+11
-0
No files found.
tests/test_codegen.py
Dosyayı görüntüle @
ee7a5ff7
...
...
@@ -60,6 +60,17 @@ class CodegenTestCase(unittest.TestCase):
pass"""
)
self
.
assertAstSourceEqual
(
source
)
def
test_pass_arguments_node
(
self
):
source
=
textwrap
.
dedent
(
"""
\
j = [1, 2, 3]
def test(a1, a2, b1=j, b2='123', b3={}, b4=[]):
pass"""
)
root_node
=
ast
.
parse
(
source
)
arguments_node
=
[
n
for
n
in
ast
.
walk
(
root_node
)
if
isinstance
(
n
,
ast
.
arguments
)][
0
]
self
.
assertEqual
(
astor
.
to_source
(
arguments_node
),
"a1, a2, b1=j, b2='123', b3={}, b4=[]"
)
def
test_matrix_multiplication
(
self
):
for
source
in
(
"(a @ b)"
,
"a @= b"
):
if
sys
.
version_info
>=
(
3
,
5
):
...
...
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