]> source.dussan.org Git - svg.js.git/commitdiff
fixed specs for SVG.Point, fixes #530
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Wed, 12 Oct 2016 12:48:28 +0000 (14:48 +0200)
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Wed, 12 Oct 2016 12:48:28 +0000 (14:48 +0200)
spec/SpecRunner.html
spec/spec/point.js

index 4f204a64a24e226b4db71e8628d5f464cbd61c27..192aef1bcd5d7d7cd4dda9afbae7627161eb13f5 100644 (file)
@@ -58,6 +58,7 @@
   <script src="spec/event.js"></script>
   <script src="spec/boxes.js"></script>
   <script src="spec/matrix.js"></script>
+  <script src="spec/point.js"></script>
   <script src="spec/rect.js"></script>
   <script src="spec/circle.js"></script>
   <script src="spec/ellipse.js"></script>
index ce2878146d776fdb25c9002d741c34712c5cb814..3cd0bdcf66a18268ed8dc662bd487b78dc535747 100644 (file)
@@ -5,8 +5,8 @@ describe('Point', function() {
 
     describe('without a source', function() {
 
-      point(function() {
-        matrix = new SVG.Point
+      beforeEach(function() {
+        point = new SVG.Point
       })
 
       it('creates a new point with default values', function() {
@@ -76,7 +76,7 @@ describe('Point', function() {
   describe('morph()', function() {
     it('stores a given point for morphing', function() {
       var point1 = new SVG.Point(1,1)
-        , point2 = new SVG.Matrix(2,2)
+        , point2 = new SVG.Point(2,2)
 
       point1.morph(point2)
 
@@ -84,7 +84,7 @@ describe('Point', function() {
     })
     it('stores a clone, not the given matrix itself', function() {
       var point1 = new SVG.Point(1,1)
-        , point2 = new SVG.Matrix(2,2)
+        , point2 = new SVG.Point(2,2)
 
       point1.morph(point2)
 
@@ -96,9 +96,9 @@ describe('Point', function() {
     it('returns a morphed point at a given position', function() {
       var point1 = new SVG.Point(1,1)
         , point2 = new SVG.Point(2,2)
-        , matrix3 = matrix1.morph(matrix2).at(0.5)
+        , point3 = point1.morph(point2).at(0.5)
 
-      expect(matrix3).toEqual(new SVG.Point(1.5, 1.5))
+      expect(point3).toEqual(new SVG.Point(1.5, 1.5))
     })
   })
 
@@ -107,9 +107,9 @@ describe('Point', function() {
       var point = new SVG.Point(1,5)
         , matrix = new SVG.Matrix(0,0,1,0,0,1)
 
-      expect(point.transform(matrox)).toEqual(new SVG.Point(5,1))
+      expect(point.transform(matrix)).toEqual(new SVG.Point(5,1))
     })
-  }
+  })
 
   describe('native()', function() {
     it('returns native SVGPoint', function() {