module GdsApi::TestHelpers::CommonResponses
def titleize_slug(slug, options = {})
def titleize_slug(slug, options = {}) if options[:title_case] slug.tr("-", " ").gsub(/\b./, &:upcase) else slug.tr("-", " ").capitalize end end
def titleize_slug(slug, options = {}) if options[:title_case] slug.tr("-", " ").gsub(/\b./, &:upcase) else slug.tr("-", " ").capitalize end end