File: expr.t

package info (click to toggle)
libref-util-xs-perl 0.117-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 428 kB
  • sloc: perl: 300; makefile: 3
file content (7 lines) | stat: -rw-r--r-- 172 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
use strict;
use warnings;
use Test::More tests => 1;
use Ref::Util::XS 'is_arrayref';

sub arrayref { [] }
ok( is_arrayref( arrayref() ), 'Got arrayref from expression' );