Jannon 034205baa8 Testing Framework Upgrade Part II
The second half of the first phase of the testing framework upgrade.  This finishes moving the exisintg tests to jasmine and the new test directory structure
2012-05-04 18:52:19 -07:00

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);
});
});