File: rexp.t

package info (click to toggle)
libstatistics-r-io-perl 1.0002-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,824 kB
  • sloc: perl: 10,895; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 266 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!perl -T
use 5.010;
use strict;
use warnings FATAL => 'all';

use Test::More tests => 1;
use Test::Fatal;

use Statistics::R::REXP;

# not instantiable
like(exception {
    Statistics::R::REXP->new,
     }, qr /an abstract class/,
     'creating a REXP instance');