aboutsummaryrefslogtreecommitdiffstats
path: root/test/ngResource
diff options
context:
space:
mode:
Diffstat (limited to 'test/ngResource')
-rw-r--r--test/ngResource/resourceSpec.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/ngResource/resourceSpec.js b/test/ngResource/resourceSpec.js
index cf3b886b..33dc6d5b 100644
--- a/test/ngResource/resourceSpec.js
+++ b/test/ngResource/resourceSpec.js
@@ -129,12 +129,6 @@ describe("resource", function() {
R.get({a: 'doh@fo o', ':bar': '$baz@1', '!do&h': 'g=a h'});
});
- it('should allow relative paths in resource url', function () {
- var R = $resource(':a');
- $httpBackend.expect('GET', 'data.json').respond('{}');
- R.get({ a: 'data.json' });
- });
-
it('should encode & in url params', function() {
var R = $resource('/Path/:a');