mirror of
				https://github.com/django/django.git
				synced 2025-10-30 17:16:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			565 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			565 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import io
 | |
| 
 | |
| from django.core.management import call_command
 | |
| from django.test import TestCase
 | |
| 
 | |
| 
 | |
| class CoreCommandsNoOutputTests(TestCase):
 | |
|     available_apps = ['empty_models']
 | |
| 
 | |
|     def test_sqlflush_no_tables(self):
 | |
|         err = io.StringIO()
 | |
|         call_command('sqlflush', stderr=err)
 | |
|         self.assertEqual(err.getvalue(), 'No tables found.\n')
 | |
| 
 | |
|     def test_sqlsequencereset_no_sequences(self):
 | |
|         err = io.StringIO()
 | |
|         call_command('sqlsequencereset', 'empty_models', stderr=err)
 | |
|         self.assertEqual(err.getvalue(), 'No sequences found.\n')
 |