-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test for replay group install without package_types
- Loading branch information
Showing
4 changed files
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
dnf-behave-tests/fixtures/specs/transaction-sr-upgrade/bottom-e-1.0-1.spec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Name: bottom-e | ||
Version: 1.0 | ||
Release: 1 | ||
|
||
License: Public Domain | ||
URL: None | ||
|
||
Summary: Bottom level package | ||
|
||
%description | ||
Dummy. | ||
|
||
%files | ||
|
||
%changelog |
17 changes: 17 additions & 0 deletions
17
dnf-behave-tests/fixtures/specs/transaction-sr-upgrade/bottom-f-1.0-1.spec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Name: bottom-f | ||
Version: 1.0 | ||
Release: 1 | ||
|
||
License: Public Domain | ||
URL: None | ||
|
||
BuildArch: noarch | ||
|
||
Summary: Bottom level package | ||
|
||
%description | ||
Dummy. | ||
|
||
%files | ||
|
||
%changelog |
18 changes: 18 additions & 0 deletions
18
dnf-behave-tests/fixtures/specs/transaction-sr-upgrade/comps.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE comps PUBLIC "-//Red Hat, Inc.//DTD Comps info//EN" "comps.dtd"> | ||
<comps> | ||
<group> | ||
<id>test-group</id> | ||
<default>false</default> | ||
<uservisible>true</uservisible> | ||
<name>Test Group</name> | ||
<description>This group serves for testing purposes</description> | ||
<packagelist> | ||
<packagereq type="mandatory">top-a</packagereq> | ||
<packagereq type="mandatory">bottom-e</packagereq> | ||
<packagereq type="default">top-b</packagereq> | ||
<packagereq type="default">bottom-f</packagereq> | ||
<packagereq type="optional">top-c</packagereq> | ||
</packagelist> | ||
</group> | ||
</comps> |