diff options
| author | Igor Minar | 2011-08-05 16:24:12 -0700 | 
|---|---|---|
| committer | Igor Minar | 2011-08-06 01:54:06 -0700 | 
| commit | 06835a462afc7105532e13abdd5217314b3ae71e (patch) | |
| tree | eef3f670482fb1061f99ce12228f687051cca1c5 /test/ResourceSpec.js | |
| parent | 142cffcf64d2dce93089e9a73257bddf50e96990 (diff) | |
| download | angular.js-06835a462afc7105532e13abdd5217314b3ae71e.tar.bz2 | |
style($function): replace $function with 'function'
Diffstat (limited to 'test/ResourceSpec.js')
| -rw-r--r-- | test/ResourceSpec.js | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/test/ResourceSpec.js b/test/ResourceSpec.js index b4a7d37e..e2f14682 100644 --- a/test/ResourceSpec.js +++ b/test/ResourceSpec.js @@ -17,12 +17,12 @@ describe("resource", function() {    });    it("should build resource", function(){ -    expect(typeof CreditCard).toBe($function); -    expect(typeof CreditCard.get).toBe($function); -    expect(typeof CreditCard.save).toBe($function); -    expect(typeof CreditCard.remove).toBe($function); -    expect(typeof CreditCard['delete']).toBe($function); -    expect(typeof CreditCard.query).toBe($function); +    expect(typeof CreditCard).toBe('function'); +    expect(typeof CreditCard.get).toBe('function'); +    expect(typeof CreditCard.save).toBe('function'); +    expect(typeof CreditCard.remove).toBe('function'); +    expect(typeof CreditCard['delete']).toBe('function'); +    expect(typeof CreditCard.query).toBe('function');    });    it('should default to empty parameters', function(){  | 
