1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-17 14:37:02 +00:00

test: Ignore fexp in the regular Go build

fexp is a testing utility, including it in the regular Go build confuses
some automation as it can think it's part of chasquid proper.

All other testing utilities are ignored via the "+build ignore"
annotation for this reason, so this patch adds it to fexp to fix this
issue.
This commit is contained in:
Alberto Bertogli
2020-11-22 11:54:55 +00:00
parent 78df715a02
commit aa9455c418

View File

@@ -1,3 +1,5 @@
// +build ignore
// Fetch an URL, and check if the response matches what we expect.
//
// Useful for testing HTTP(s) servers.