mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 21:26:10 +03:00
21 lines
433 B
JavaScript
21 lines
433 B
JavaScript
|
/* global module, asyncTest, $, ok, equal, notEqual, start, test, Util, testLog */
|
||
|
|
||
|
(function() {
|
||
|
var viewer;
|
||
|
|
||
|
module('TileSourceCollection', {
|
||
|
setup: function () {
|
||
|
testLog.reset();
|
||
|
},
|
||
|
teardown: function () {
|
||
|
}
|
||
|
});
|
||
|
|
||
|
// ----------
|
||
|
asyncTest('deprecation', function() {
|
||
|
Util.testDeprecation(OpenSeadragon, 'TileSourceCollection');
|
||
|
start();
|
||
|
});
|
||
|
|
||
|
})();
|