revbank/t
Juerd Waalboer 599bf1bc98 Fix unit tests for fileio: create tempfiles in cwd
RevBank uses atomic file replacement by creating a new file and renaming
it over the old one. The newly created file is always in cwd, and
for the atomic rename() to work it must reside on the same filesystem as
the file it's replacing. Since File::Temp does the right thing and
creates files in /tmp by default, and /tmp is usually on a different
filesystem, these unit tests didn't actually work.

I don't know why they did work in the past. There doesn't seem to have
been any relevant change (or any at all, for that matter) to File::Temp,
which has had this behavior for ages. But I can't imagine that my /tmp
has only recently become a tmpfs mount either.

In any case, the issue is fixed by making File::Temp do the wrong thing,
which is to create its files in the cwd.
2024-08-28 05:35:14 +02:00
..
amount.t Handle huge numbers better 2024-08-28 05:19:02 +02:00
amount2.t ChatGPT wrote some unit tests and found a small bug. 2023-03-16 00:00:26 +01:00
calc.t More tests 2023-12-25 05:02:02 +01:00
cart.t Some more tests by ChatGPT 2023-03-16 00:30:48 +01:00
fileio.t Fix unit tests for fileio: create tempfiles in cwd 2024-08-28 05:35:14 +02:00
prompt.t Better cursor position after input syntax error 2023-12-28 20:38:37 +01:00
README tests README 2023-12-28 14:07:19 +01:00

To run all tests, run from the parent directory:

	prove -Ilib t