Changeset 497

Show
Ignore:
Timestamp:
04/27/05 12:41:37 (4 years ago)
Author:
alex
Message:

tests should now pass

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • tests/graphics/animation/test_animation.js

    r495 r497  
    33 
    44function test_animation_packagefile(){ 
    5         jum.assertTrue("test1", typeof dojo.graphics=="object"); 
    6         jum.assertTrue("test1", typeof dojo.graphics.animation=="object"); 
    7         jum.assertTrue("test1", typeof dojo.graphics.animation.Animation=="object"); 
    8         jum.assertTrue("test1", typeof dojo.graphics.animation.AnimationEvent=="object"); 
     5        jum.assertEquals("test1", typeof dojo.graphics, "object"); 
     6        jum.assertEquals("test2", typeof dojo.graphics.animation, "object"); 
     7        jum.assertEquals("test3", typeof dojo.graphics.animation.Animation, "function"); 
     8        jum.assertEquals("test5", typeof dojo.graphics.animation.AnimationEvent, "function"); 
    99}