Skip to content

Instantly share code, notes, and snippets.

@koral--
Created May 7, 2018 00:37
Show Gist options
  • Save koral--/040aa648cd4eb8e934c7717f3932dcd6 to your computer and use it in GitHub Desktop.
Save koral--/040aa648cd4eb8e934c7717f3932dcd6 to your computer and use it in GitHub Desktop.
Go unit test example
func TestDownloadFileUnreachableURL(t *testing.T) {
dummyFile, err := os.Open("/dev/null")
require.NoError(t, err)
err = downloadFile("http://unreachable.invalid", dummyFile)
require.Error(t, err)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment