File: callback_invalid_sv.t

package info (click to toggle)
libjavascript-quickjs-perl 0.21-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,180 kB
  • sloc: ansic: 72,822; javascript: 7,743; perl: 1,065; makefile: 353; sh: 108
file content (22 lines) | stat: -rw-r--r-- 322 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env perl

use strict;
use warnings;

use Test::More;
use Test::FailWarnings;

use JavaScript::QuickJS;

my $js = JavaScript::QuickJS->new();

my $cb = $js->eval( 'a => a' );

eval { $cb->( bless [], 'FooFoo' ) };

my $err = $@;

like $err, qr<FooFoo>, 'invalid SV given to JS callback coderef';

done_testing;