jsdoc/test/specs/documentation/variations.js

40 lines
1.7 KiB
JavaScript

'use strict';
describe('variations', function() {
describe('by name', function() {
var docSet = jasmine.getDocSetFromFile('test/fixtures/variations.js');
var fadein1 = docSet.getByLongname('anim.fadein(1)')[0];
var fadein2 = docSet.getByLongname('anim.fadein(2)')[0];
it('When a symbol has a name with a variation, the doclet has a variation property.', function() {
expect(fadein1.variation).toBe('1');
expect(fadein2.variation).toBe('2');
});
it('When a symbol has a name with a variation in the name, the doclet name has no variation in it.', function() {
expect(fadein1.name).toBe('fadein');
expect(fadein2.name).toBe('fadein');
});
it('When a symbol has a name with a variation in the name, the doclet longname has the variation in it.', function() {
expect(fadein1.longname).toBe('anim.fadein(1)');
expect(fadein2.longname).toBe('anim.fadein(2)');
});
});
describe('by tag', function() {
var docSet = jasmine.getDocSetFromFile('test/fixtures/variations3.js');
var someObject = docSet.getByLongname('someObject')[0];
var someObject2 = docSet.getByLongname('someObject(2)')[0];
var someObject2Method = docSet.getByLongname('someObject(2).someMethod')[0];
it('When a symbol has a variation tag, the longname includes that variation.', function() {
expect(someObject2.longname).toBe('someObject(2)');
});
it('When a symbol is a member of a variation, the longname includes the variation.', function() {
expect(someObject2Method.longname).toBe('someObject(2).someMethod');
});
});
});