// ========================================================================== // Project: Redbull.File Unit Test // Copyright: ©2010 Mike Ball // ========================================================================== /*globals Redbull module test ok equals same stop start */

module(“Redbull.File”);

// TODO: Replace with real unit test for File test(“test description”, function() {

var expected = "test";
var result   = "test";
equals(result, expected, "test should equal test");

});