mirror of https://github.com/go-gitea/gitea.git
A testing cleanup. This pull request replaces `os.MkdirTemp` with `t.TempDir`. We can use the `T.TempDir` function from the `testing` package to create temporary directory. The directory created by `T.TempDir` is automatically removed when the test and all its subtests complete. This saves us at least 2 lines (error check, and cleanup) on every instance, or in some cases adds cleanup that we forgot. Reference: https://pkg.go.dev/testing#T.TempDir ```go func TestFoo(t *testing.T) { // before tmpDir, err := os.MkdirTemp("", "") require.NoError(t, err) defer os.RemoveAll(tmpDir) // now tmpDir := t.TempDir() } ``` Signed-off-by: Eng Zer Jun <engzerjun@gmail.com> |
||
|---|---|---|
| .. | ||
| buffer.go | ||
| buffer_test.go | ||
| colors.go | ||
| colors_router.go | ||
| conn.go | ||
| conn_test.go | ||
| console.go | ||
| console_other.go | ||
| console_test.go | ||
| console_windows.go | ||
| errors.go | ||
| event.go | ||
| file.go | ||
| file_test.go | ||
| flags.go | ||
| groutinelabel.go | ||
| groutinelabel_test.go | ||
| level.go | ||
| level_test.go | ||
| log.go | ||
| log_test.go | ||
| logger.go | ||
| multichannel.go | ||
| provider.go | ||
| smtp.go | ||
| smtp_test.go | ||
| stack.go | ||
| writer.go | ||
| writer_test.go | ||