golden icon indicating copy to clipboard operation
golden copied to clipboard

Package golden testing with golden files in Go. A golden file is the expected output of test, stored as a separate file rather than as a string literal inside the test code.

Results 1 golden issues
Sort by recently updated
recently updated
newest added

The method is needed to read JSON data with validation of the data. ``` var _ bytes.Buffer = golden.JSONRe(t) // OR var _ bytes.Buffer = golden.ReadJSON(t) ``` Original Russian text:...