aboutsummaryrefslogtreecommitdiffstats
path: root/docs/spec/ngdocSpec.js
diff options
context:
space:
mode:
authorMatias Niemelä2013-07-09 18:08:23 -0400
committerPete Bacon Darwin2013-07-12 22:43:24 +0100
commit77c715d7caedf9dd56b07b451dc47480cac5aaff (patch)
treeb4109eca61df9d193b18a017f756c06447d4366a /docs/spec/ngdocSpec.js
parent5a294c8646452d6e49339d145faeae4f31dcd0fc (diff)
downloadangular.js-77c715d7caedf9dd56b07b451dc47480cac5aaff.tar.bz2
chore(ngdoc): wrap all pages inside of a container tag for easy styling
Diffstat (limited to 'docs/spec/ngdocSpec.js')
-rw-r--r--docs/spec/ngdocSpec.js64
1 files changed, 40 insertions, 24 deletions
diff --git a/docs/spec/ngdocSpec.js b/docs/spec/ngdocSpec.js
index 7a038e89..128e0106 100644
--- a/docs/spec/ngdocSpec.js
+++ b/docs/spec/ngdocSpec.js
@@ -59,10 +59,10 @@ describe('ngdoc', function() {
'@param {function(number, string=)} d fn with optional arguments');
doc.parse();
expect(doc.param).toEqual([
- {name:'a', description:'<p>short</p>', type:'*', optional:false, 'default':undefined},
- {name:'b', description:'<p>med</p>', type:'Type', optional:false, 'default':undefined},
- {name:'c', description:'<p>long\nline</p>', type:'Class', optional:true, 'default':'2'},
- {name:'d', description:'<p>fn with optional arguments</p>',
+ {name:'a', description:'<div class="a-page"><p>short</p></div>', type:'*', optional:false, 'default':undefined},
+ {name:'b', description:'<div class="a-page"><p>med</p></div>', type:'Type', optional:false, 'default':undefined},
+ {name:'c', description:'<div class="a-page"><p>long\nline</p></div>', type:'Class', optional:true, 'default':'2'},
+ {name:'d', description:'<div class="a-page"><p>fn with optional arguments</p></div>',
type: 'function(number, string=)', optional: false, 'default':undefined}
]);
});
@@ -72,7 +72,7 @@ describe('ngdoc', function() {
doc.parse();
expect(doc.returns).toEqual({
type: 'Type',
- description: '<p>text <em>bold</em>.</p>'
+ description: '<div class="a-page"><p>text <em>bold</em>.</p></div>'
});
});
@@ -138,11 +138,25 @@ describe('ngdoc', function() {
it('should not replace anything in <pre>, but escape the html escape the content', function() {
expect(new Doc().markdown('bah x\n<pre>\n<b>angular</b>.k\n</pre>\n asdf x')).
toEqual(
- '<p>bah x\n' +
+ '<div class="docs-page"><p>bah x\n' +
'<pre class="prettyprint linenums">\n' +
'&lt;b&gt;angular&lt;/b&gt;.k\n' +
'</pre>\n' +
- ' asdf x</p>');
+ ' asdf x</p></div>');
+ });
+
+ it('should wrap everything inside a container tag', function() {
+ var doc = new Doc('@name superman').parse();
+ var content = doc.markdown('hello');
+
+ expect(content).toMatch('<div class="superman-page"><p>hello</p></div>');
+ });
+
+ it('should use the content before a colon as the name prefix for the className of the tag container', function() {
+ var doc = new Doc('@name super: man').parse();
+ var content = doc.markdown('hello');
+
+ expect(content).toMatch('<div class="super-page super-man-page"><p>hello</p></div>');
});
it('should replace text between two <pre></pre> tags', function() {
@@ -162,11 +176,11 @@ describe('ngdoc', function() {
'\ngit bla bla\n</doc:tutorial-instruction>\n' +
'</doc:tutorial-instructions>')).toEqual(
- '<p>before<div class="tabbable">\n' +
+ '<div class="docs-page"><p>before<div class="tabbable">\n' +
'<div class="tab-pane well" id="git-mac" ng:model="Git on Mac/Linux">\n' +
'git bla bla\n' +
'</doc:tutorial-instruction>\n' +
- '</doc:tutorial-instructions></p>');
+ '</doc:tutorial-instructions></p></div>');
});
it('should unindent text before processing based on the second line', function() {
@@ -290,7 +304,7 @@ describe('ngdoc', function() {
name : 'number',
optional: false,
'default' : undefined,
- description : '<p>Number \nto format.</p>' }]);
+ description : '<div class="a-page"><p>Number \nto format.</p></div>' }]);
});
it('should parse with default and optional', function() {
@@ -301,7 +315,7 @@ describe('ngdoc', function() {
name : 'fractionSize',
optional: true,
'default' : '2',
- description : '<p>desc</p>' }]);
+ description : '<div class="a-page"><p>desc</p></div>' }]);
});
});
@@ -311,8 +325,8 @@ describe('ngdoc', function() {
doc.ngdoc = 'service';
doc.parse();
expect(doc.requires).toEqual([
- {name:'$service', text:'<p>for \n<code>A</code></p>'},
- {name:'$another', text:'<p>for <code>B</code></p>'}]);
+ {name:'$service', text:'<div class="a-page"><p>for \n<code>A</code></p></div>'},
+ {name:'$another', text:'<div class="a-page"><p>for <code>B</code></p></div>'}]);
expect(doc.html()).toContain('<a href="api/ng.$service">$service</a>');
expect(doc.html()).toContain('<a href="api/ng.$another">$another</a>');
expect(doc.html()).toContain('<p>for \n<code>A</code></p>');
@@ -364,7 +378,7 @@ describe('ngdoc', function() {
var doc = new Doc("@name a\n@property {string} name desc rip tion");
doc.parse();
expect(doc.properties[0].name).toEqual('name');
- expect(doc.properties[0].description).toEqual('<p>desc rip tion</p>');
+ expect(doc.properties[0].description).toEqual('<div class="a-page"><p>desc rip tion</p></div>');
});
it('should parse @property with type and description both', function() {
@@ -372,7 +386,7 @@ describe('ngdoc', function() {
doc.parse();
expect(doc.properties[0].name).toEqual('name');
expect(doc.properties[0].type).toEqual('bool');
- expect(doc.properties[0].description).toEqual('<p>desc rip tion</p>');
+ expect(doc.properties[0].description).toEqual('<div class="a-page"><p>desc rip tion</p></div>');
});
});
@@ -395,26 +409,26 @@ describe('ngdoc', function() {
it('should parse @returns with type and description', function() {
var doc = new Doc("@name a\n@returns {string} descrip tion");
doc.parse();
- expect(doc.returns).toEqual({type: 'string', description: '<p>descrip tion</p>'});
+ expect(doc.returns).toEqual({type: 'string', description: '<div class="a-page"><p>descrip tion</p></div>'});
});
it('should parse @returns with complex type and description', function() {
var doc = new Doc("@name a\n@returns {function(string, number=)} description");
doc.parse();
- expect(doc.returns).toEqual({type: 'function(string, number=)', description: '<p>description</p>'});
+ expect(doc.returns).toEqual({type: 'function(string, number=)', description: '<div class="a-page"><p>description</p></div>'});
});
it('should transform description of @returns with markdown', function() {
var doc = new Doc("@name a\n@returns {string} descrip *tion*");
doc.parse();
- expect(doc.returns).toEqual({type: 'string', description: '<p>descrip <em>tion</em></p>'});
+ expect(doc.returns).toEqual({type: 'string', description: '<div class="a-page"><p>descrip <em>tion</em></p></div>'});
});
it('should support multiline content', function() {
var doc = new Doc("@name a\n@returns {string} description\n new line\n another line");
doc.parse();
expect(doc.returns).
- toEqual({type: 'string', description: '<p>description\nnew line\nanother line</p>'});
+ toEqual({type: 'string', description: '<div class="a-page"><p>description\nnew line\nanother line</p></div>'});
});
});
@@ -423,18 +437,18 @@ describe('ngdoc', function() {
var doc = new Doc("@name a\n@description <pre><b>abc</b></pre>");
doc.parse();
expect(doc.description).
- toBe('<pre class="prettyprint linenums">&lt;b&gt;abc&lt;/b&gt;</pre>');
+ toBe('<div class="a-page"><pre class="prettyprint linenums">&lt;b&gt;abc&lt;/b&gt;</pre></div>');
});
it('should support multiple pre blocks', function() {
var doc = new Doc("@name a\n@description foo \n<pre>abc</pre>\n#bah\nfoo \n<pre>cba</pre>");
doc.parse();
expect(doc.description).
- toBe('<p>foo \n' +
+ toBe('<div class="a-page"><p>foo \n' +
'<pre class="prettyprint linenums">abc</pre>\n\n' +
'<h1 id="bah">bah</h1>\n\n' +
'<p>foo \n' +
- '<pre class="prettyprint linenums">cba</pre>');
+ '<pre class="prettyprint linenums">cba</pre></div>');
});
@@ -477,7 +491,7 @@ describe('ngdoc', function() {
it('should not remove {{}}', function() {
var doc = new Doc('@name a\n@example text {{ abc }}');
doc.parse();
- expect(doc.example).toEqual('<p>text {{ abc }}</p>');
+ expect(doc.example).toEqual('<div class="a-page"><p>text {{ abc }}</p></div>');
});
});
@@ -496,10 +510,12 @@ describe('ngdoc', function() {
doc.parse();
expect(doc.html()).toContain('<h3>Method\'s <code>this</code></h3>\n' +
'<div>' +
+ '<div class="a-page">' +
'<p>I am self.</p>' +
+ '</div>' +
'</div>\n');
expect(doc.html()).toContain('<h3>Method\'s <code>this</code></h3>\n' +
- '<div><p>I am self.</p></div>');
+ '<div><div class="a-page"><p>I am self.</p></div></div>');
});
});