Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions products.d/agama-products-opensuse.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue May 21 11:35:51 UTC 2024 - Richard Brown <rbrown@suse.com>

- Remove definitions for MicroOS Desktop

-------------------------------------------------------------------
Mon Dec 4 14:11:51 UTC 2023 - Ancor Gonzalez Sosa <ancor@suse.com>

Expand Down
1 change: 0 additions & 1 deletion products.d/agama-products-opensuse.spec
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ install -m 0644 *.yaml %{buildroot}%{_datadir}/agama/products.d
%dir %{_datadir}/agama
%dir %{_datadir}/agama/products.d
%{_datadir}/agama/products.d/microos.yaml
%{_datadir}/agama/products.d/microos-desktop.yaml
%{_datadir}/agama/products.d/tumbleweed.yaml

%changelog
139 changes: 0 additions & 139 deletions products.d/microos-desktop.yaml

This file was deleted.

5 changes: 2 additions & 3 deletions service/test/agama/software/manager_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -230,12 +230,11 @@
describe "#products" do
it "returns the list of known products" do
products = subject.products
expect(products.size).to eq(3)
expect(products.size).to eq(2)
expect(products).to all(be_a(Agama::Software::Product))
expect(products).to contain_exactly(
an_object_having_attributes(id: "Tumbleweed"),
an_object_having_attributes(id: "MicroOS"),
an_object_having_attributes(id: "MicroOS-Desktop")
an_object_having_attributes(id: "MicroOS")
)
end
end
Expand Down