mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			950 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			950 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* global QUnit, URLify */
 | |
| 'use strict';
 | |
| 
 | |
| QUnit.module('admin.URLify');
 | |
| 
 | |
| QUnit.test('empty string', function(assert) {
 | |
|     assert.strictEqual(URLify('', 8, true), '');
 | |
| });
 | |
| 
 | |
| QUnit.test('strip nonessential words', function(assert) {
 | |
|     assert.strictEqual(URLify('the D is silent', 8, true), 'd-silent');
 | |
| });
 | |
| 
 | |
| QUnit.test('strip non-URL characters', function(assert) {
 | |
|     assert.strictEqual(URLify('D#silent@', 7, true), 'dsilent');
 | |
| });
 | |
| 
 | |
| QUnit.test('merge adjacent whitespace', function(assert) {
 | |
|     assert.strictEqual(URLify('D   silent', 8, true), 'd-silent');
 | |
| });
 | |
| 
 | |
| QUnit.test('trim trailing hyphens', function(assert) {
 | |
|     assert.strictEqual(URLify('D silent always', 9, true), 'd-silent');
 | |
| });
 | |
| 
 | |
| QUnit.test('do not remove English words if the string contains non-ASCII', function(assert) {
 | |
|     // If removing English words wasn't skipped, the last 'a' would be removed.
 | |
|     assert.strictEqual(URLify('Kaupa-miða', 255, true), 'kaupa-miða');
 | |
| });
 |