mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-13 03:23:18 +03:00
15 lines
501 B
JavaScript
15 lines
501 B
JavaScript
|
describe("virtual symbols", function() {
|
||
|
var docSet = jasmine.getDocSetFromFile('test/fixtures/virtual.js'),
|
||
|
found = [
|
||
|
docSet.getByLongname('dimensions'),
|
||
|
docSet.getByLongname('width')
|
||
|
];
|
||
|
|
||
|
it('should document virtual symbols', function() {
|
||
|
expect(found[0].length).toEqual(1);
|
||
|
});
|
||
|
|
||
|
it('should document an undocumented symbol found after a comment for a virtual symbol', function() {
|
||
|
expect(found[1].length).toEqual(1);
|
||
|
});
|
||
|
});
|