aboutsummaryrefslogtreecommitdiffstats
path: root/test/service/httpSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/service/httpSpec.js')
-rw-r--r--test/service/httpSpec.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/service/httpSpec.js b/test/service/httpSpec.js
index c6adee9e..d827e941 100644
--- a/test/service/httpSpec.js
+++ b/test/service/httpSpec.js
@@ -479,18 +479,6 @@ describe('$http', function() {
});
- it('should have patch()', function() {
- $httpBackend.expect('PATCH', '/url').respond('');
- $http.patch('/url');
- });
-
-
- it('patch() should allow config param', function() {
- $httpBackend.expect('PATCH', '/url', undefined, checkHeader('Custom', 'Header')).respond('');
- $http.patch('/url', {headers: {'Custom': 'Header'}});
- });
-
-
it('should have post()', function() {
$httpBackend.expect('POST', '/url', 'some-data').respond('');
$http.post('/url', 'some-data');