Added tests for more or less parameters

This commit is contained in:
Felipe Ruhland 2016-05-24 11:58:52 -03:00
parent fc9a45ee91
commit b8a09d7ab7
No known key found for this signature in database
GPG Key ID: 6708F893426891AF
1 changed files with 2 additions and 0 deletions

View File

@ -89,6 +89,8 @@ class StartprojectTest(ProjectTest):
self.assertEqual(1, self.call('startproject', self.project_name + '2', project_dir))
self.assertEqual(1, self.call('startproject', 'wrong---project---name'))
self.assertEqual(1, self.call('startproject', 'sys'))
self.assertEqual(2, self.call('startproject'))
self.assertEqual(2, self.call('startproject', self.project_name, project_dir, 'another_params'))
class StartprojectTemplatesTest(ProjectTest):