From 249bbaf8c43e0c5971b38495505a40fc71a66eeb Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sat, 26 Sep 2026 09:14:51 +0200 Subject: [PATCH] add setup file vorbis --- tests/vorbis.bats | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/vorbis.bats b/tests/vorbis.bats index 9073924..6077b95 100755 --- a/tests/vorbis.bats +++ b/tests/vorbis.bats @@ -3,11 +3,14 @@ setup() { bats_load_library 'bats-support' bats_load_library 'bats-assert' - mkdir --parents "build/tests/output" source "src/lib/vorbis.sh" } -teardown() { +setup_file() { + mkdir --parents "build/tests/output" +} + +teardown_file() { rm --recursive --force "build" } -- 2.47.3