dwf: monster file re-org. RED BUILD
This commit is contained in:
@@ -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);
|
||||
}
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user