Files
iD/test/spec/svg/svg.js
2016-10-04 21:56:09 -04:00

22 lines
751 B
JavaScript

describe('iD.svgRelationMemberTags', function() {
it('includes tags from parent multipolygon relations', function() {
var graph = iD.Graph([
iD.Way({id: 'w'}),
iD.Relation({id: 'r', members: [{id: 'w'}], tags: {type: 'multipolygon'}})
]);
expect(iD.svgRelationMemberTags(graph)(graph.entity('w')))
.to.eql({type: 'multipolygon'});
});
it('includes tags from parent boundary relations', function() {
var graph = iD.Graph([
iD.Way({id: 'w'}),
iD.Relation({id: 'r', members: [{id: 'w'}], tags: {type: 'boundary'}})
]);
expect(iD.svgRelationMemberTags(graph)(graph.entity('w')))
.to.eql({type: 'boundary'});
});
});