String Ruby

string = "This is a test"
if string =~ /[A-Z]/ and string =~ /[a-z]/
  puts "string contains mixed case"
end