Add vendor files for go build

This commit is contained in:
Rui Chen
2019-10-27 12:04:31 -04:00
parent d19f0e1c5d
commit 659e0a8eff
599 changed files with 246938 additions and 0 deletions

19
vendor/github.com/alecthomas/chroma/lexers/README.md generated vendored Normal file
View File

@ -0,0 +1,19 @@
# Lexer tests
The tests in this directory feed a known input `testdata/<name>.actual` into the parser for `<name>` and check
that its output matches `<name>.exported`.
## Running the tests
Run the tests as normal:
```go
go test ./lexers
```
## Updating the existing tests
You can regenerate all the test outputs
```go
RECORD=true go test ./lexers
```