File: test-use-constant.t

package info (click to toggle)
libmath-gmp-perl 2.25-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 248 kB
  • sloc: perl: 737; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 205 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use strict;
use warnings;

use Test::More tests => 1;

use Math::GMP (qw( :constant ));

{
    # TEST
    is ((2 ** 100 . ''), '1267650600228229401496703205376', "Test for :constant");
}