mirror of
https://github.com/postgres/postgres.git
synced 2026-04-14 21:47:31 -04:00
Most executables already get that testing. To occupy the customary 001_basic.pl name, this renumbers the new-in-October tests of src/test/postmaster/t. Reviewed by Thomas Munro. Discussion: https://postgr.es/m/20241215022701.a1.nmisch@google.com
13 lines
271 B
Perl
13 lines
271 B
Perl
|
|
# Copyright (c) 2021-2025, PostgreSQL Global Development Group
|
|
|
|
use strict;
|
|
use warnings FATAL => 'all';
|
|
use PostgreSQL::Test::Utils;
|
|
use Test::More;
|
|
|
|
program_help_ok('postgres');
|
|
program_version_ok('postgres');
|
|
program_options_handling_ok('postgres');
|
|
|
|
done_testing();
|