aboutsummaryrefslogtreecommitdiff
path: root/test_suite/bug/bug_mpath.pl
diff options
context:
space:
mode:
authorribet2007-06-06 06:46:39 +0000
committerribet2007-06-06 06:46:39 +0000
commit826847df4489deb0b8b568dc8ec0685cbd078708 (patch)
treef40dc1d56d0b9f2415ad6a60a08c8c3d054f38cf /test_suite/bug/bug_mpath.pl
parent30df10a39a747cb5bc7c0baadc31a6b8466b0ab6 (diff)
downloadmtc-826847df4489deb0b8b568dc8ec0685cbd078708.zip
mtc-826847df4489deb0b8b568dc8ec0685cbd078708.tar.gz
mtc-826847df4489deb0b8b568dc8ec0685cbd078708.tar.bz2
mtc-826847df4489deb0b8b568dc8ec0685cbd078708.tar.xz
Référencement des bugs et outil de test automatique.
Diffstat (limited to 'test_suite/bug/bug_mpath.pl')
-rwxr-xr-xtest_suite/bug/bug_mpath.pl53
1 files changed, 53 insertions, 0 deletions
diff --git a/test_suite/bug/bug_mpath.pl b/test_suite/bug/bug_mpath.pl
new file mode 100755
index 0000000..53cb5f6
--- /dev/null
+++ b/test_suite/bug/bug_mpath.pl
@@ -0,0 +1,53 @@
+#!/usr/bin/perl
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU GPL General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA,
+# or refer to http://www.gnu.org/copyleft/gpl.html
+#
+
+BEGIN {
+ unshift @INC, ".", "../src", "../../src";
+}
+
+use MTools;
+use MTools::MSwitch;
+use MTools::MTimer;
+use MTools::Anim::MPath;
+
+new MTools (800, 600, "Bug en fin d'animation");
+
+my $mauve = minstance("basique.svg#mauve", 1);
+rotate($mauve, 45);
+
+my $anim = new MTools::Anim::MPath(targets => $mauve,
+ path => [[0, 0],
+ [100, -300],
+ [200, 0],
+ [0, 0]]);
+
+my $switch = new MTools::MSwitch(1,
+ anim => ["basique.svg#layer1", $mauve,$anim],
+ complet => ["basique.svg#layer1", $mauve]);
+$switch->setState(complet);
+
+my @states = qw(complet anim);
+my $timer = new MTools::MTimer(2000, 1, \&switch);
+$timer->start();
+
+mrun;
+
+sub switch {
+ my $new_state = pop @states;
+ $switch->setState($new_state);
+ unshift @states, $new_state;
+}