Encoder tests using gql fail on Windows #7
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The tests that use the gql quasi quoter fail becuase \n and \r don't match. The reason seems to be that git adds platform specific line endings and these breaks the multiline string literals. The solution would be probably to normalize the input. The quasi quoter uses
linesandunlinesfunctions but these don't handle cariage return. So a customlinesfunction may be helpful.