Skip to content

Commit

Permalink
Revive the plugin inflection test as a skipped test
Browse files Browse the repository at this point in the history
It all works but we don't have a plugin that has inflections now that v2v is
gone.  The test is good but we can't run it without a generic plugin that does
this.

Followup to ManageIQ#21515
  • Loading branch information
jrafanie committed Oct 27, 2021
1 parent f1f7bce commit 8a153b3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions spec/lib/vmdb/plugins_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@
expect(asset_path.path).to eq ManageIQ::UI::Classic::Engine.root
expect(asset_path.namespace).to eq "manageiq-ui-classic"
end

it "with engines with inflections", :skip => "Waiting on replacement plugin specifying inflections like v2v did" do
asset_paths = described_class.asset_paths

asset_path = asset_paths.detect { |ap| ap.name == "ManageIQ::V2V::Engine" }
expect(asset_path.path).to eq ManageIQ::V2V::Engine.root
expect(asset_path.namespace).to eq "manageiq-v2v"
end
end

it ".provider_plugins" do
Expand Down

0 comments on commit 8a153b3

Please sign in to comment.