Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumRubymethod_missing and respond_to_missingSingle-choice MCQ

In this method_missing that delegates unknown names to super, what is the exact NoMethodError message when delete_user is called?

class Router def method_missing(name, *args) if name.to_s.start_with?("get_") "handled #{name}" else super end end end Router.new.delete_user