mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-14 20:13:01 +03:00
23 lines
No EOL
925 B
JavaScript
23 lines
No EOL
925 B
JavaScript
describe("quoted names", function() {
|
|
|
|
describe("when found in square brackets", function() {
|
|
var docSet = jasmine.getDocSetFromFile('test/fixtures/quotename.js'),
|
|
found1 = docSet.getByLongname('chat.\"#channel\".open')[0];
|
|
|
|
|
|
it('should have correct name and memberof', function() {
|
|
expect(found1.name).toEqual('open');
|
|
expect(found1.memberof).toEqual('chat.\"#channel\"');
|
|
});
|
|
});
|
|
|
|
describe("when found in an object literal", function() {
|
|
var docSet = jasmine.getDocSetFromFile('test/fixtures/quotename2.js'),
|
|
found1 = docSet.getByLongname("contacts.\"say-\\\"hello\\\"@example.com\".username")[0];
|
|
|
|
it('should have correct name and memberof', function() {
|
|
expect(found1.name).toEqual('username');
|
|
expect(found1.memberof).toEqual("contacts.\"say-\\\"hello\\\"@example.com\"");
|
|
});
|
|
});
|
|
}); |