module('lively.morphic.video.VideoTest').requires('lively.morphic.Tests', 'lively.morphic.video.Video').toRun(function() { lively.morphic.Tests.MorphTests.subclass('lively.morphic.Tests.VideoTest', 'testing', { test01CreateVideoMorp: function() { var morph = new lively.morphic.Video() this.assertFalse(morph === undefined); }, test02AddToWorld: function() { var morph = new lively.morphic.Video() this.assertFalse(morph === undefined); } }); }) // end of module