From 4cac684baf8d4453fd963d8aaa1aa07f9a895afc Mon Sep 17 00:00:00 2001 From: dhrname Date: Thu, 12 Feb 2015 22:15:59 +0900 Subject: [PATCH] Modify the Spec for a min property --- tool/Spec/spec/SvgDomSpec.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tool/Spec/spec/SvgDomSpec.js b/tool/Spec/spec/SvgDomSpec.js index 307a101..893801b 100644 --- a/tool/Spec/spec/SvgDomSpec.js +++ b/tool/Spec/spec/SvgDomSpec.js @@ -2647,6 +2647,9 @@ describe("SMIL Animation Spec", function() { simpleDur: act.simpleDur } ); expect(act.$d.call()).toEqual(Math.floor(2000*act.fpms)); + } ); + /*無効同値クラスを調べておく (Equivalence partitioning, the following is the invalid partion)*/ + it("should be this for the value (the invalid partion)", function() { /*min > max*/ act.up("$d").mix( { min: "3", @@ -2655,9 +2658,7 @@ describe("SMIL Animation Spec", function() { simpleDur: act.simpleDur } ); expect(act.$d.call()).toEqual(Math.floor(1000*act.fpms)); - } ); - /*無効同値クラスを調べておく (Equivalence partitioning, the following is the invalid partion)*/ - it("should be this for the value (the invalid partion)", function() { + act.repeatDur = null; act.repeatCount = "indefinite"; act.dur = "1"; -- 2.11.0