tynany / frr_exporter

Prometheus exporter for Free Range Routing
MIT License
100 stars 34 forks source link

Move JSON test fixture blobs to on-disk files #88

Closed dswarbrick closed 2 years ago

dswarbrick commented 2 years ago

Move JSON test fixture blobs to on-disk files, to de-clutter the actual Go test code.

@tynany PTAL

dswarbrick commented 2 years ago

@tynany Beware that this PR uses os.ReadFile, which was added in Go 1.16. If you still want to support older versions of Go, I can change it to use the older (and now deprecated) ioutil.ReadFile, which is merely a wrapper around os.ReadFile since Go 1.16 anyway.