1#!perl
2use strict;
3use Test;
4BEGIN { plan tests => 1 }
5
6# test the loading of the module
7eval "use Math::SimpleVariable";
8ok(length($@) == 0);
9