summaryrefslogtreecommitdiff
path: root/js_tests/admin/RelatedObjectLookups.test.js
blob: 8585e9ada3ec4efe249ab95a1677bf05073454f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* global QUnit, id_to_windowname,
   windowname_to_id */
/* eslint strict: 0 */
'use strict';

QUnit.module('admin.RelatedObjectLookups');

QUnit.test('id_to_windowname', function(assert) {
    assert.equal(id_to_windowname('.test'), '__dot__test');
    assert.equal(id_to_windowname('misc-test'), 'misc__dash__test');
});

QUnit.test('windowname_to_id', function(assert) {
    assert.equal(windowname_to_id('__dot__test'), '.test');
    assert.equal(windowname_to_id('misc__dash__test'), 'misc-test');
});