File: 12-preservelayers_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 (35 lines) | stat: -rw-r--r-- 701 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
27
28
29
30
31
32
33
34
35
use strict;
use warnings;
use File::Temp;
use Test::More 0.88;
require './t/TestUtils.pm';
t::TestUtils->import();

use 5.6.0;
use utf8;

use IO::Pager;

SKIP: {
  skip_interactive();

  my $fileno = fileno(STDOUT);
  {
    binmode(*STDOUT, ':encoding(UTF-8)');
    my $pager = IO::Pager->new(*STDOUT);
    $pager->say('Bonzai Bjørn');
    $pager->say("$/End of text, try pressing 'Q' to exit.");
    $pager->close();
  }

  #Reinstate some order
  CORE::open(*BOB, ">&=$fileno");
  binmode(*BOB, ':encoding(UTF-8)');
  select(BOB);

  my $A = prompt("\nDid you see 'Bonzai Bjørn' in your pager? Note the crossed o in the second word [Yn]");
  ok is_yes($A), 'layer preservation';

}

done_testing;