# File lib/deltacloud/models/instance.rb, line 61
  def method_missing(name, *args)
    if name =~ /is_(\w+)\?/
      return true if self.state.downcase.eql?($1)
    else
      raise NoMethodError.new(name.to_s)
    end
  end