2016-01-09 03:58:03 +08:00
|
|
|
/* global module, test, id_to_windowname,
|
2015-08-26 12:24:55 +08:00
|
|
|
windowname_to_id */
|
|
|
|
/* eslint global-strict: 0, strict: 0 */
|
|
|
|
'use strict';
|
|
|
|
|
2015-04-14 22:55:57 +08:00
|
|
|
module('admin.RelatedObjectLookups');
|
|
|
|
|
|
|
|
test('id_to_windowname', function(assert) {
|
|
|
|
assert.equal(id_to_windowname('.test'), '__dot__test');
|
|
|
|
assert.equal(id_to_windowname('misc-test'), 'misc__dash__test');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('windowname_to_id', function(assert) {
|
|
|
|
assert.equal(windowname_to_id('__dot__test'), '.test');
|
|
|
|
assert.equal(windowname_to_id('misc__dash__test'), 'misc-test');
|
|
|
|
});
|