diff options
| author | René Fleschenberg <rene@fleschenberg.net> | 2013-05-02 12:55:47 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-05-31 13:16:54 -0400 |
| commit | 5090c7b58bd3c774daf17a13d7408968f0ee8da0 (patch) | |
| tree | 1b7fcae1effd71f68ee3f9cc84de7a7574160bc4 | |
| parent | 23e1b59cf2ad6a75637dd0273973e657e48e317e (diff) | |
Improved the usage message of the test command.
| -rw-r--r-- | django/core/management/commands/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/test.py b/django/core/management/commands/test.py index 2b8e8019eb..d6bed7cdb5 100644 --- a/django/core/management/commands/test.py +++ b/django/core/management/commands/test.py @@ -29,7 +29,7 @@ class Command(BaseCommand): ) help = ('Runs the test suite for the specified applications, or the ' 'entire site if no apps are specified.') - args = '[appname ...]' + args = '[appname|appname.tests.TestCase|appname.tests.TestCase.test_method]...' requires_model_validation = False |
