diff options
author | wout <wout@impinc.co.uk> | 2014-08-30 17:06:00 +0200 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2014-08-30 17:06:00 +0200 |
commit | bde8508836f9cad16b462c811d124258ca35400d (patch) | |
tree | df79d62041c7afa4a40517f27ddb2a6a45568e63 /spec | |
parent | 6c1820b4c5790be1b0872a49a50d10d97a243292 (diff) | |
download | svg.js-bde8508836f9cad16b462c811d124258ca35400d.tar.gz svg.js-bde8508836f9cad16b462c811d124258ca35400d.zip |
Added animated parametric transformations
Diffstat (limited to 'spec')
-rw-r--r-- | spec/spec/matrix.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/spec/spec/matrix.js b/spec/spec/matrix.js index 281cdb3..78fd2b9 100644 --- a/spec/spec/matrix.js +++ b/spec/spec/matrix.js @@ -47,12 +47,6 @@ describe('Matrix', function() { expect(matrix.toString()).toBe('matrix(1,0,0,1,0,0)') }) }) - - describe('toArray()' , function() { - it('exports correctly to an array', function() { - expect(matrix.toArray()).toEqual([1,0,0,1,0,0]) - }) - }) }) describe('with an element given', function() { @@ -102,12 +96,6 @@ describe('Matrix', function() { }) }) - - describe('toArray()' , function() { - it('exports correctly to a string', function() { - expect(matrix.toArray()).toEqual([matrix.a, matrix.b, matrix.c, matrix.d, matrix.e, matrix.f]) - }) - }) }) |