Files
iD/test/spec/Relation.js
Tom MacWright 75d9331233 Start traversing the graph, other changes
Adds GeoJSON viewing to features, unifies the way that features refer
to their children.
2012-11-01 10:55:33 -04:00

12 lines
186 B
JavaScript

describe('Relation', function() {
var rm;
beforeEach(function() {
rm = new iD.Relation();
});
it('is instantiated', function() {
expect(rm).toBeTruthy();
});
});