summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-11-15 21:08:39 +0000
committerJohn Turner <jturner.usa@gmail.com>2025-11-15 21:08:39 +0000
commitfdf1f09d6f43e7aa80a43fa117c26d535106f936 (patch)
tree7131df3cc633d17d472d4af83fc148bd79554fbb /tests
parentc0bd0c9efd429b35354484e24fe272fa1fbfe901 (diff)
downloadgentoo-utils-fdf1f09d6f43e7aa80a43fa117c26d535106f936.tar.gz
add meson support
Diffstat (limited to 'tests')
-rw-r--r--tests/repo.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/repo.rs b/tests/repo.rs
deleted file mode 100644
index 77a29b2..0000000
--- a/tests/repo.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-use gentoo_utils::ebuild::repo::Repo;
-
-#[test]
-fn test_read_repo() {
- let repo = Repo::new("/var/db/repos/gentoo");
-
- for category in repo.categories().unwrap().map(|cat| cat.unwrap()) {
- for _ in category.ebuilds().unwrap().map(|ebuild| ebuild.unwrap()) {}
- }
-}