File: 02-which_interactive.t

package info (click to toggle)
libio-pager-perl 2.10-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 284 kB
  • sloc: perl: 1,416; makefile: 14
file content (26 lines) | stat: -rw-r--r-- 453 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
23
24
25
26
use strict;
use warnings;
use Test::More 0.88;
require './t/TestUtils.pm';
t::TestUtils->import();
use Env qw( PAGER );

# Test that a reasonable pager can be found

SKIP: {
  skip_interactive();

  diag "Current PAGER: '".($PAGER||'')."'\n";
  
  require IO::Pager;
  diag "PAGER set by IO::Pager: '".($PAGER||'')."'\n";

  select STDERR;
  my $A = prompt("\nIs this reasonable? [Yn]");
  ok is_yes($A), 'Found a reasonable pager';
}

done_testing;