1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-19 10:49:43 +00:00
TiddlyWiki5/tw2/source/tiddlywiki/test/js/Animator.js
Jeremy Ruston a1c8ac624f Added first pass at support for building TiddlyWiki 2.6.x with TW5
There are still some whitespace and attribute ordering issues, but the
result runs correctly.
2012-05-29 22:02:38 +01:00

33 lines
1.1 KiB
JavaScript
Executable File

jQuery(document).ready(function(){
module("Animator");
test("Animator : constructor", function() {
var a = new Animator();
same(typeof a,'object','the Animator() constructor should return an object');
same(a.running,0,'the object returned by the Animator() constructor should contain a \'running\' integer with a value of 0 ');
same(a.timerID,0,'the object returned by the Animator() constructor should contain a \'timerID\' integer with a value of 0 ');
same(a.animations.length,0,'the object returned by the Animator() constructor should contain an empty \'animations\' array');
});
test("Animator : functions", function() {
var expected = ".2061";
var actual = Animator.slowInSlowOut(0.3);
actual = actual.toString().substr(1,5);
same(actual,expected,'given a float value, Animator.slowInSlowOut() returns the result of the correct mathematical transformation.');
expected = 0;
actual = Animator.slowInSlowOut(2);
same(actual,expected,'given a value above the max of valid input, Animator.slowInSlowOut() clamps its output appropriately.');
});
});