Files
CropCompass/node_modules/svg.js/spec/spec/symbol.js
T

16 lines
395 B
JavaScript

describe('Symbol', function() {
describe('()', function() {
var element
beforeEach(function() {
element = draw.symbol()
})
it('creates an instance of SVG.Symbol', function() {
expect(element instanceof SVG.Symbol).toBeTruthy()
})
it('is an instance of SVG.Container', function() {
expect(element instanceof SVG.Container).toBeTruthy()
})
})
})