mirror of
https://github.com/postgres/postgres.git
synced 2026-05-19 08:41:23 -04:00
Discussion: https://postgr.es/m/CABUevEzK3cNiHZQ18f5tK0guoT+cN_jWeVzhYYxY=r+1Q3SmoA@mail.gmail.com
20 lines
473 B
Perl
20 lines
473 B
Perl
use strict;
|
|
use warnings;
|
|
|
|
use PostgresNode;
|
|
use TestLib;
|
|
use Test::More tests => 10;
|
|
|
|
program_help_ok('pg_isready');
|
|
program_version_ok('pg_isready');
|
|
program_options_handling_ok('pg_isready');
|
|
|
|
command_fails(['pg_isready'], 'fails with no server running');
|
|
|
|
my $node = get_new_node('main');
|
|
$node->init;
|
|
$node->start;
|
|
|
|
# use a long timeout for the benefit of very slow buildfarm machines
|
|
$node->command_ok([qw(pg_isready --timeout=60)],
|
|
'succeeds with server running');
|