mirror of
				https://github.com/django/django.git
				synced 2025-11-04 05:35:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			285 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			285 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.test import SimpleTestCase
 | 
						|
 | 
						|
from ..utils import setup
 | 
						|
 | 
						|
 | 
						|
class LoremTagTests(SimpleTestCase):
 | 
						|
 | 
						|
    @setup({'lorem1': '{% lorem 3 w %}'})
 | 
						|
    def test_lorem1(self):
 | 
						|
        output = self.engine.render_to_string('lorem1')
 | 
						|
        self.assertEqual(output, 'lorem ipsum dolor')
 |