postgres/contrib/pg_visibility
Michael Paquier fabb33b351 Improve TAP tests by replacing ok() with better Test::More functions
The TAP tests whose ok() calls are changed in this commit were relying
on perl operators, rather than equivalents available in Test::More.  For
example, rather than the following:
ok($data =~ qr/expr/m, "expr matching");
ok($data !~ qr/expr/m, "expr not matching");
The new test code uses this equivalent:
like($data, qr/expr/m, "expr matching");
unlike($data, qr/expr/m, "expr not matching");

A huge benefit of the new formulation is that it is possible to know
about the values we are checking if a failure happens, making debugging
easier, should the test runs happen in the buildfarm, in the CI or
locally.

This change leads to more test code overall as perltidy likes to make
the code pretty the way it is in this commit.

Author: Sadhuprasad Patro <b.sadhu@gmail.com>
Discussion: https://postgr.es/m/CAFF0-CHhwNx_Cv2uy7tKjODUbeOgPrJpW4Rpf1jqB16_1bU2sg@mail.gmail.com
2025-10-17 14:39:09 +09:00
..
expected Avoid edge case in pg_visibility test with small shared_buffers 2024-03-25 20:19:43 -07:00
sql Avoid edge case in pg_visibility test with small shared_buffers 2024-03-25 20:19:43 -07:00
t Improve TAP tests by replacing ok() with better Test::More functions 2025-10-17 14:39:09 +09:00
.gitignore Add relkind checks to certain contrib modules 2017-03-09 16:34:25 -05:00
Makefile Fix false reports in pg_visibility 2024-03-14 13:12:05 +02:00
meson.build Update copyright for 2025 2025-01-01 11:21:55 -05:00
pg_visibility--1.1--1.2.sql Default monitoring roles 2017-03-30 14:18:53 -04:00
pg_visibility--1.1.sql pg_visibility: Add pg_truncate_visibility_map function. 2016-06-17 17:37:30 -04:00
pg_visibility--1.0--1.1.sql pg_visibility: Add pg_truncate_visibility_map function. 2016-06-17 17:37:30 -04:00
pg_visibility.c read_stream: Introduce and use optional batchmode support 2025-03-30 18:36:41 -04:00
pg_visibility.control Default monitoring roles 2017-03-30 14:18:53 -04:00