dwf: monster file re-org. RED BUILD

This commit is contained in:
Davis W. Frank
2009-06-14 23:34:29 -07:00
parent e48c22ffbd
commit b2cbff3bb6
17 changed files with 107 additions and 4399 deletions

View File

@@ -5,9 +5,6 @@
/** @namespace */
var jasmine = {};
/** @deprecated use jasmine (lowercase because it's a package name) instead */
var Jasmine = jasmine;
jasmine.unimplementedMethod_ = function() {
throw new Error("unimplemented method");
};
@@ -64,7 +61,6 @@ jasmine.any = function(clazz) {
return new jasmine.Matchers.Any(clazz);
};
jasmine.createSpy = function(name) {
var spyObj = function() {
spyObj.wasCalled = true;
@@ -135,7 +131,6 @@ var it = function(desc, func) {
return jasmine.getEnv().it(desc, func);
};
//this mirrors the spec syntax so you can define a spec description that will not run.
var xit = function(desc, func) {
return jasmine.getEnv().xit(desc, func);
};
@@ -210,4 +205,4 @@ jasmine.include = function(url, opt_global) {
return eval(xhr.responseText);
}
};
};