diff options
Diffstat (limited to 't/00constants.t')
-rw-r--r-- | t/00constants.t | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/t/00constants.t b/t/00constants.t new file mode 100644 index 0000000..fba9aba --- /dev/null +++ b/t/00constants.t @@ -0,0 +1,8 @@ +#!perl +use strict; +use warnings; +use Test::More tests => 2; + +BEGIN { use_ok( 'WWW::Curl::Easy' ); } + +ok (CURLOPT_URL == 10000+2, "Constant loaded ok"); |