]> source.dussan.org Git - svg.js.git/commitdiff
Added failing test for PointArray
authordotnetCarpenter <jon.ronnenberg@gmail.com>
Mon, 10 Oct 2016 13:47:07 +0000 (11:47 -0200)
committerdotnetCarpenter <jon.ronnenberg@gmail.com>
Wed, 12 Oct 2016 14:52:50 +0000 (12:52 -0200)
spec/spec/array.js

index 812a2906d1736e4bec0fcbe49e056883369d8242..b0432570a927a07a10c3f78fdaf8cb34fecb275f 100644 (file)
@@ -33,6 +33,11 @@ describe('PointArray', function () {
 
     expect(array + '').toBe('0,0.15 -100,-3.141592654 50,100')
   })
+  it('parses Polygon points string correctly', function() {
+    var array = new SVG.PointArray('221.08 191.79 0.46 191.79 0.46 63.92 63.8 0.46 284.46 0.46 284.46 128.37 221.08 191.79')
+
+    expect(array + '').toBe('221.08, 191.79, 0.46, 191.79, 0.46, 63.92, 63.8, 0.46, 284.46, 0.46, 284.46, 128.37, 221.08, 191.79')
+  })
 })
 
 describe('PathArray', function () {