refactor(test): move existing gpodder_sqlite tests into a separate crate

This refactor allows new implementations of the store contract to reuse
the same tests, ensuring all implementations support the same behavior.
This commit is contained in:
Jef Roosens 2026-05-06 20:38:04 +02:00
parent 8954104954
commit 8498fe9661
Signed by: Jef Roosens
GPG key ID: 21FD3D77D56BAF49
10 changed files with 89 additions and 89 deletions

9
gpodder_test/Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[package]
name = "gpodder_test"
version.workspace = true
edition.workspace = true
[dependencies]
gpodder = { path = "../gpodder" }
chrono.workspace = true