mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	[1.7.x] cater for running tests from another directory than tests - applying existing pattern to newly added test_testcase_ordering as well
Backport of d11e836203 from master
			
			
This commit is contained in:
		
				
					committed by
					
						 Tim Graham
						Tim Graham
					
				
			
			
				
	
			
			
			
						parent
						
							0c3a23d2b9
						
					
				
				
					commit
					d0c6016367
				
			| @@ -104,17 +104,18 @@ class DiscoverRunnerTest(TestCase): | |||||||
|         self.assertEqual(count, 0) |         self.assertEqual(count, 0) | ||||||
|  |  | ||||||
|     def test_testcase_ordering(self): |     def test_testcase_ordering(self): | ||||||
|         suite = DiscoverRunner().build_suite(["test_discovery_sample/"]) |         with change_cwd(".."): | ||||||
|         self.assertEqual( |             suite = DiscoverRunner().build_suite(["test_discovery_sample/"]) | ||||||
|             suite._tests[0].__class__.__name__, |             self.assertEqual( | ||||||
|             'TestDjangoTestCase', |                 suite._tests[0].__class__.__name__, | ||||||
|             msg="TestDjangoTestCase should be the first test case") |                 'TestDjangoTestCase', | ||||||
|         self.assertEqual( |                 msg="TestDjangoTestCase should be the first test case") | ||||||
|             suite._tests[1].__class__.__name__, |             self.assertEqual( | ||||||
|             'TestZimpleTestCase', |                 suite._tests[1].__class__.__name__, | ||||||
|             msg="TestZimpleTestCase should be the second test case") |                 'TestZimpleTestCase', | ||||||
|         # All others can follow in unspecified order, including doctests |                 msg="TestZimpleTestCase should be the second test case") | ||||||
|         self.assertIn('DocTestCase', [t.__class__.__name__ for t in suite._tests[2:]]) |             # All others can follow in unspecified order, including doctests | ||||||
|  |             self.assertIn('DocTestCase', [t.__class__.__name__ for t in suite._tests[2:]]) | ||||||
|  |  | ||||||
|     def test_overrideable_test_suite(self): |     def test_overrideable_test_suite(self): | ||||||
|         self.assertEqual(DiscoverRunner().test_suite, TestSuite) |         self.assertEqual(DiscoverRunner().test_suite, TestSuite) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user