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
c24e979e
Kaydet (Commit)
c24e979e
authored
Haz 14, 2014
tarafından
Claude Paroz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #7762 -- Hidden full script name in command error output
üst
5949c211
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
base.py
django/core/management/base.py
+2
-1
tests.py
tests/admin_scripts/tests.py
+8
-0
No files found.
django/core/management/base.py
Dosyayı görüntüle @
c24e979e
...
...
@@ -300,7 +300,8 @@ class BaseCommand(object):
for
opt
in
self
.
option_list
:
parser
.
add_option
(
opt
)
else
:
parser
=
CommandParser
(
self
,
prog
=
"
%
s
%
s"
%
(
prog_name
,
subcommand
),
description
=
self
.
help
or
None
)
parser
=
CommandParser
(
self
,
prog
=
"
%
s
%
s"
%
(
os
.
path
.
basename
(
prog_name
),
subcommand
),
description
=
self
.
help
or
None
)
parser
.
add_argument
(
'--version'
,
action
=
'version'
,
version
=
self
.
get_version
())
parser
.
add_argument
(
'-v'
,
'--verbosity'
,
action
=
'store'
,
dest
=
'verbosity'
,
default
=
'1'
,
type
=
int
,
choices
=
[
0
,
1
,
2
,
3
],
...
...
tests/admin_scripts/tests.py
Dosyayı görüntüle @
c24e979e
...
...
@@ -1417,6 +1417,14 @@ class CommandTypes(AdminScriptTestCase):
expected_labels
=
"('testlabel',)"
self
.
_test_base_command
(
args
,
expected_labels
,
option_a
=
"'x'"
,
option_b
=
"'y'"
)
def
test_base_command_with_wrong_option
(
self
):
"User BaseCommands outputs command usage when wrong option is specified"
args
=
[
'base_command'
,
'--invalid'
]
out
,
err
=
self
.
run_manage
(
args
)
self
.
assertNoOutput
(
out
)
self
.
assertOutput
(
err
,
"usage: manage.py base_command"
)
self
.
assertOutput
(
err
,
"error: unrecognized arguments: --invalid"
)
def
_test_base_command
(
self
,
args
,
labels
,
option_a
=
"'1'"
,
option_b
=
"'2'"
):
out
,
err
=
self
.
run_manage
(
args
)
...
...
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