diff options
| author | Julien Bouquillon | 2013-05-10 23:06:18 +0200 | 
|---|---|---|
| committer | Brian Ford | 2013-07-11 14:07:08 -0700 | 
| commit | 52d6a5990225439ac9141398d83e0d4e6134b576 (patch) | |
| tree | e84f333f3ac1b4bef3696d8638fe3a89fe79f706 /docs/spec | |
| parent | 8bd6619b7efa485b020fec96c76047e480469871 (diff) | |
| download | angular.js-52d6a5990225439ac9141398d83e0d4e6134b576.tar.bz2 | |
feat(ngDocs): add links to source for API
 - add tests
 - the link points to the gruntUtil.getVersion().number tree on github
Diffstat (limited to 'docs/spec')
| -rw-r--r-- | docs/spec/sourceLinkSpec.js | 29 | 
1 files changed, 29 insertions, 0 deletions
| diff --git a/docs/spec/sourceLinkSpec.js b/docs/spec/sourceLinkSpec.js new file mode 100644 index 00000000..3dc73cc8 --- /dev/null +++ b/docs/spec/sourceLinkSpec.js @@ -0,0 +1,29 @@ +var ngdoc = require('../src/ngdoc.js'); +var gruntUtil = require('../../lib/grunt/utils.js'); + +describe('Docs Links', function() { + +  describe('links', function() { +    var doc; + +    beforeEach(function() { +      doc = new ngdoc.Doc("@ngdoc function\n@name ng.filter:a\n@function"); +      doc.section = 'api'; +      doc.file = 'test.js'; +      doc.line = 42; +      doc.parse(); +    }); + +    it('should have an "improve this doc" button', function() { +      expect(doc.html()). +        toContain('<a href="http://github.com/angular/angular.js/edit/master/test.js" class="improve-docs btn btn-primary"><i class="icon-edit"> </i> Improve this doc</a>'); +    }); + +    it('should have an "view source" button', function() { +      expect(doc.html()). +        toContain('<a href="http://github.com/angular/angular.js/tree/v' + gruntUtil.getVersion().number + '/test.js#L42" class="view-source btn btn-action"><i class="icon-zoom-in"> </i> View source</a>'); +    }); + +  }); + +}); | 
