summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2014-08-30 17:06:00 +0200
committerwout <wout@impinc.co.uk>2014-08-30 17:06:00 +0200
commitbde8508836f9cad16b462c811d124258ca35400d (patch)
treedf79d62041c7afa4a40517f27ddb2a6a45568e63 /spec
parent6c1820b4c5790be1b0872a49a50d10d97a243292 (diff)
downloadsvg.js-bde8508836f9cad16b462c811d124258ca35400d.tar.gz
svg.js-bde8508836f9cad16b462c811d124258ca35400d.zip
Added animated parametric transformations
Diffstat (limited to 'spec')
-rw-r--r--spec/spec/matrix.js12
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])
- })
- })
})