aboutsummaryrefslogtreecommitdiff
path: root/src/bin/pg_resetwal/t/001_basic.pl
blob: 1b157cb55572bb1bfc60c3423c29595a486456fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use strict;
use warnings;

use PostgresNode;
use TestLib;
use Test::More tests => 11;

program_help_ok('pg_resetwal');
program_version_ok('pg_resetwal');
program_options_handling_ok('pg_resetwal');

my $node = get_new_node('main');
$node->init;

command_like([ 'pg_resetwal', '-n', $node->data_dir ],
			 qr/checkpoint/,
			 'pg_resetwal -n produces output');