status-go/params
Eng Zer Jun 83ad76637a
test: use `T.TempDir` to create temporary test directory (#2746)
This commit replaces `os.MkdirTemp` with `t.TempDir` in tests. The
directory created by `t.TempDir` is automatically removed when the test
and all its subtests complete.

Prior to this commit, temporary directory created using `os.MkdirTemp`
needs to be removed manually by calling `os.RemoveAll`, which is omitted
in some tests. The error handling boilerplate e.g.
	defer func() {
		if err := os.RemoveAll(dir); err != nil {
			t.Fatal(err)
		}
	}
is also tedious, but `t.TempDir` handles this for us nicely.

Reference: https://pkg.go.dev/testing#T.TempDir

Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
2023-04-26 21:39:51 +01:00
..
cluster.go chore: add status.prod fleet (#2583) 2022-03-11 15:48:51 -05:00
config.go feat: add api to get list of owners from a given nft contract 2023-04-19 08:30:10 -03:00
config_test.go test: use `T.TempDir` to create temporary test directory (#2746) 2023-04-26 21:39:51 +01:00
defaults.go Remove Ropsten and Rinkeby test networks 2022-10-24 14:17:46 +02:00
validator.go [#856] move geth subpackages to root level (#1007) 2018-06-08 13:29:50 +02:00
version.go fix: add mode build param and change ipfs gateway accordingly 2022-08-26 18:57:55 +02:00
version_test.go add test to check that version doesn't start with v 2019-10-29 12:53:27 +01:00