ManageIQ/manageiq-providers-vmware

View on GitHub
app/models/manageiq/providers/vmware/cloud_manager/orchestration_stack/status.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class ManageIQ::Providers::Vmware::CloudManager::OrchestrationStack::Status < ::OrchestrationStack::Status
  def succeeded?
    %w(on off suspended).include?(status.to_s.downcase)
  end

  def failed?
    %w(failed_creation).include?(status.to_s.downcase)
  end
end