this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

internal/filetypes: remove unused test.cue file

It was added in 2020 but it is not consumed by any test anymore,
nor it seems to have been modified since.
We already have plenty of tests as part of `go test`.

Signed-off-by: Daniel Martí <mvdan@mvdan.cc>
Change-Id: Ia67ecb7012c8cde5c01e64b35a48690bae72d8cc
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/1194861
Reviewed-by: Paul Jolly <paul@myitcv.io>
Unity-Result: CUE porcuepine <cue.porcuepine@gmail.com>
TryBot-Result: CUEcueckoo <cueckoo@cuelang.org>

-19
-19
internal/filetypes/test.cue
··· 1 - file: { 2 - 3 - filename: "foo.json" 4 - encoding: "json" 5 - form: string | *"" 6 - 7 - // extensions[".json"] 8 - 9 - form: "schema" 10 - } & json 11 - 12 - // tags maps command line tags to file properties. 13 - json: { 14 - encoding: "json" 15 - form: _ 16 - if form == "schema" { 17 - interpretations: *"jsonschema" | _ 18 - } 19 - }