From a3424ea265df2c91a51654a0cd5980d1ed3347bc Mon Sep 17 00:00:00 2001 From: Sheel Choksi Date: Thu, 24 Oct 2013 13:57:09 -0700 Subject: [PATCH] Remove addCustomEqualityTester and addMatchers from global These functions are available on the jasmine namespace --- lib/jasmine-core/boot/boot.js | 4 ---- spec/support/dev_boot.js | 4 ---- 2 files changed, 8 deletions(-) diff --git a/lib/jasmine-core/boot/boot.js b/lib/jasmine-core/boot/boot.js index 1dddb3a4..a233a5a1 100644 --- a/lib/jasmine-core/boot/boot.js +++ b/lib/jasmine-core/boot/boot.js @@ -69,10 +69,6 @@ return env.spyOn(obj, methodName); }, - addCustomEqualityTester: function(tester) { - env.addCustomEqualityTester(tester); - }, - jsApiReporter: new jasmine.JsApiReporter({ timer: new jasmine.Timer() }) diff --git a/spec/support/dev_boot.js b/spec/support/dev_boot.js index b485b2fc..a4bd0385 100644 --- a/spec/support/dev_boot.js +++ b/spec/support/dev_boot.js @@ -39,10 +39,6 @@ return env.pending(); }, - addMatchers: function(matchers) { - return env.addMatchers(matchers); - }, - spyOn: function(obj, methodName) { return env.spyOn(obj, methodName); },