--- 
assert_match: |-
  # 'cheat assertions' for the rest
  
  assert_match(pattern, string, message="")
  
  Passes if string =~ pattern.
  
  Example:
  
    assert_match(/\d+/, 'five, 6, seven')
