Updated file header and included tests.

This commit is contained in:
Kazi Manzur Rashid
2013-04-20 08:04:23 +06:00
parent 2a9a991418
commit d977feba3c
2 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
/// <reference path="fixtures.d.ts" />
function test_path() {
fixtures.path = "/fixtures";
}
function test_containerId() {
fixtures.containerId = "fixtures";
}
function test_body() {
if (!fixtures.body()) {
console.log('body is empty');
}
}
function test_window() {
if (!fixtures.window) {
console.log('window is not set');
}
}
function test_set() {
fixtures.set('<div></div>');
}
function test_appendSet() {
fixtures.appendSet('<div></div>');
}
function test_preload() {
fixtures.preload('/dummy-fixtures.html');
}
function test_load() {
fixtures.load('/dummy-fixtures1.html', '/dummy-fixtures2.html');
}
function test_appendLoad() {
fixtures.appendLoad('/dummy-fixtures1.html', '/dummy-fixtures2.html');
}
function test_read() {
fixtures.read('/dummy-fixtures1.html', '/dummy-fixtures2.html');
}
function test_clearCache() {
fixtures.clearCache();
}
function test_clearCleanup() {
fixtures.cleanUp();
}

View File

@@ -1,3 +1,8 @@
// Type definitions for js-fixtures 1.2.0
// Project: https://github.com/badunk/js-fixtures
// Definitions by: Kazi Manzur Rashid <https://github.com/kazimanzurrashid/>
// DefinitelyTyped: https://github.com/borisyankov/DefinitelyTyped
declare interface Fixtures {
path: string;
containerId: string;