blob: ace405690d2acd38c23d3c32350c0342c9c99de1 [file] [log] [blame]
dojo.registerModulePath("tapestry", "../tapestry");
dojo.require("tapestry.fx");
dojo.require("dojo.lfx.html");
function test_preEffects(){
tapestry.fx.removeAll();
jum.assertTrue(dojo.lang.isEmpty(tapestry.fx.preEffects));
var animation = dojo.lfx.html.wipeIn();
tapestry.fx.attachPreEffect("div1", animation);
jum.assertFalse(dojo.lang.isEmpty(tapestry.fx.preEffects));
jum.assertEquals(animation, tapestry.fx.preEffects["div1"].animation);
}
function test_postEffects(){
tapestry.fx.removeAll();
jum.assertTrue(dojo.lang.isEmpty(tapestry.fx.postEffects));
tapestry.fx.attachPostEffect("div1", dojo.lfx.html.wipeIn());
jum.assertFalse(dojo.lang.isEmpty(tapestry.fx.postEffects));
}