From c2111473d195d757450e6617d9a4098c86d4d622 Mon Sep 17 00:00:00 2001 From: Martin Banas Date: Thu, 15 Aug 2024 09:46:52 +0200 Subject: [PATCH] Remove non-relevant tests from files.feature The same tests doesn't exist in 9.5 branch, see: https://github.com/rpm-software-management/ci-dnf-stack/pull/1510 --- dnf-behave-tests/dnf/repoquery/files.feature | 35 -------------------- 1 file changed, 35 deletions(-) diff --git a/dnf-behave-tests/dnf/repoquery/files.feature b/dnf-behave-tests/dnf/repoquery/files.feature index 59e7cfdf8..d9128d856 100644 --- a/dnf-behave-tests/dnf/repoquery/files.feature +++ b/dnf-behave-tests/dnf/repoquery/files.feature @@ -1,30 +1,6 @@ @dnf5 Feature: Repoquery tests working with files - -Scenario: list files in an rpm including files in filelists.xml -Given I use repository "repoquery-files" - When I execute dnf with args "repoquery a.x86_64 -l" - Then the exit code is 0 - And stdout is - """ - - /root-file - /usr/bin/a-binary - """ - - -Scenario: filter by file in primary.xml -Given I use repository "repoquery-files" - When I execute dnf with args "repoquery --file /usr/bin/a-binary" - Then the exit code is 0 - And stdout is - """ - - a-0:1.0-1.fc29.x86_64 - """ - - @RHEL-5747 Scenario: filter by file in primary.xml but force command only search in rpm names -> empty output Given I use repository "repoquery-files" @@ -35,14 +11,3 @@ Given I use repository "repoquery-files" """ - -@bz2276012 -Scenario: filter by file in filelists.xml -Given I use repository "repoquery-files" - When I execute dnf with args "repoquery --file /root-file" - Then the exit code is 0 - And stdout is - """ - - a-0:1.0-1.fc29.x86_64 - """