mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
40 lines
No EOL
1.7 KiB
JavaScript
40 lines
No EOL
1.7 KiB
JavaScript
describe("inner scope", function() {
|
|
describe("Outer~inner.member cases", function() {
|
|
var docSet = jasmine.getDocSetFromFile('test/fixtures/innerscope.js'),
|
|
to = docSet.getByLongname('Message~headers.to'),
|
|
from = docSet.getByLongname('Message~headers.from'),
|
|
response = docSet.getByLongname('Message~response.code');
|
|
|
|
it('should occur when a member of a var member is documented.', function() {
|
|
expect(to.length).toEqual(1);
|
|
});
|
|
|
|
it('should occur when a second member of a var member is documented.', function() {
|
|
expect(response.length).toEqual(1);
|
|
});
|
|
|
|
it('should occur when a deeply nested member of a var member is documented.', function() {
|
|
expect(from.length).toEqual(1);
|
|
});
|
|
});
|
|
|
|
describe("other cases", function() {
|
|
var docSet = jasmine.getDocSetFromFile('test/fixtures/innerscope2.js'),
|
|
to = docSet.getByLongname('Message~headers.to'),
|
|
from = docSet.getByLongname('<anonymous>~headers.from'),
|
|
cache = docSet.getByLongname('<anonymous>~headers.cache');
|
|
|
|
it('When a var is declared in a function, It is like Inner~member', function() {
|
|
expect(cache.length).toEqual(1);
|
|
});
|
|
|
|
it('When a var is masked by an inner var and a member of the inner is documented, it is like Inner~inner.member', function() {
|
|
expect(from.length).toEqual(1);
|
|
});
|
|
|
|
it('When a documented member is assigned to a var that masks an outer var.', function() {
|
|
expect(from[0].name).toEqual('from');
|
|
expect(from[0].memberof).toEqual('<anonymous>~headers');
|
|
});
|
|
});
|
|
}); |