This significantly improves handling by reducing file size. This is also part of an effort of getting this to build on nix itself.
28 lines
872 B
Go
28 lines
872 B
Go
package nix_test
|
|
|
|
import _ "embed"
|
|
|
|
// github:getchoo/borealis#atlas
|
|
|
|
var (
|
|
getchooAtlasOut = string(sampleMustGunzip(getchooAtlasOutGzip))
|
|
//go:embed testdata/getchoo_atlas.gz
|
|
getchooAtlasOutGzip []byte
|
|
|
|
getchooAtlasInstantiated = sampleSplitPaths(sampleMustGunzip(getchooAtlasInstantiatedGzip))
|
|
//go:embed testdata/instantiated/getchoo_atlas.gz
|
|
getchooAtlasInstantiatedGzip []byte
|
|
|
|
getchooAtlasShow = sampleMustGunzip(getchooAtlasShowGzip)
|
|
//go:embed testdata/derivation/show_getchoo_atlas.json.gz
|
|
getchooAtlasShowGzip []byte
|
|
|
|
getchooAtlasCollective = sampleSplitPaths(sampleMustGunzip(getchooAtlasCollectiveGzip))
|
|
//go:embed testdata/derivation/collect_getchoo_atlas.gz
|
|
getchooAtlasCollectiveGzip []byte
|
|
|
|
getchooAtlasStdin = string(sampleMustGunzip(getchooAtlasStdinGzip))
|
|
//go:embed testdata/format/stdin_getchoo_atlas.gz
|
|
getchooAtlasStdinGzip []byte
|
|
)
|