Skip to content
  • Yorick Peterse's avatar
    Use trailing blocks for unit tests · 97ec45b5
    Yorick Peterse authored
    This updates all existing unit tests to use the new trailing block
    syntax, instead of leaving out parentheses. This means that instead of
    this:
    
        test.group 'foo', do (group) {
          ...
        }
    
    We now write this:
    
        test.group('foo') do (group) {
          ...
        }
    97ec45b5