Add tests for vibration limiting and fix implementation. Also includes a fix in set_shift()

This commit is contained in:
Alessandro Ranellucci 2012-12-09 18:33:25 +01:00
parent c82be18d6d
commit 1a3497b71d
4 changed files with 136 additions and 42 deletions

View file

@ -1,4 +1,4 @@
use Test::More tests => 6;
use Test::More tests => 9;
use strict;
use warnings;
@ -77,7 +77,9 @@ my $retract_tests = sub {
};
$retract_tests->('');
$config->set('duplicate', 2);
$retract_tests->(' (duplicate)');
$config->set('g0', 1);
$retract_tests->(' (G0)');
$retract_tests->(' (G0 and duplicate)');
__END__