Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
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
django
Commits
8721adcb
Kaydet (Commit)
8721adcb
authored
Haz 09, 2014
tarafından
Andrew Godwin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix router_honored test to not close connection
üst
3f91238a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
tests.py
tests/commands_sql/tests.py
+5
-2
No files found.
tests/commands_sql/tests.py
Dosyayı görüntüle @
8721adcb
...
...
@@ -27,7 +27,7 @@ class SQLCommandsTestCase(TestCase):
def
test_sql_delete
(
self
):
app_config
=
apps
.
get_app_config
(
'commands_sql'
)
output
=
sql_delete
(
app_config
,
no_style
(),
connections
[
DEFAULT_DB_ALIAS
])
output
=
sql_delete
(
app_config
,
no_style
(),
connections
[
DEFAULT_DB_ALIAS
]
,
close_connection
=
False
)
drop_tables
=
[
o
for
o
in
output
if
o
.
startswith
(
'DROP TABLE'
)]
self
.
assertEqual
(
len
(
drop_tables
),
3
)
# Lower so that Oracle's upper case tbl names wont break
...
...
@@ -71,6 +71,9 @@ class SQLCommandsRouterTestCase(TestCase):
def
test_router_honored
(
self
):
app_config
=
apps
.
get_app_config
(
'commands_sql'
)
for
sql_command
in
(
sql_all
,
sql_create
,
sql_delete
,
sql_indexes
,
sql_destroy_indexes
):
output
=
sql_command
(
app_config
,
no_style
(),
connections
[
DEFAULT_DB_ALIAS
])
if
sql_command
is
sql_delete
:
output
=
sql_command
(
app_config
,
no_style
(),
connections
[
DEFAULT_DB_ALIAS
],
close_connection
=
False
)
else
:
output
=
sql_command
(
app_config
,
no_style
(),
connections
[
DEFAULT_DB_ALIAS
])
self
.
assertEqual
(
len
(
output
),
0
,
"
%
s command is not honoring routers"
%
sql_command
.
__name__
)
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