
describe 'some dope test', ->
  it 'heres a cool case', =>
    expect(someSpy).ok
    expect(someSpy).ok()
    expect(funcCallAllowingSpaces(x, y)).ok
    expect(funcCallAllowingSpaces('abc      d')).ok
    expect(funcCallAllowingSpaces('abc      d')).ok()
    expectIsSomeFunction(somethingElse).ok
    something.derp
    expect(4).eq 4 # misleading comment ending in ok
    return

