File: 200-no-cache-args.t

package info (click to toggle)
libprometheus-tiny-shared-perl 0.027-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 200 kB
  • sloc: perl: 830; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!perl

use Test::More;
use Test::Exception;

use Prometheus::Tiny::Shared;

dies_ok { Prometheus::Tiny::Shared->new(cache_args => {}) } 'constructor dies when cache_args supplied';

done_testing;