# File lib/rhc/rest/mock.rb, line 651 def find_application(domain, name, options = {}) find_domain(domain).applications.each do |app| return app if app.name.downcase == name.downcase end raise RHC::Rest::ApplicationNotFoundException.new("Application #{name} does not exist") end