Files
Eng Zer Jun cf35168f0a test: use T.TempDir to create temporary test directory
This commit replaces `ioutil.TempDir` 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 `ioutil.TempDir`
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>
2022-05-05 21:09:41 +08:00
..
2022-03-22 13:04:35 +01:00
2022-05-04 12:52:27 +01:00
2022-01-21 09:52:12 -05:00
2022-04-25 13:23:20 +02:00
2021-05-06 11:51:15 +02:00
2022-01-18 12:47:07 +01:00
2022-04-20 18:55:39 +01:00
2022-05-02 13:29:59 +02:00
2022-03-22 13:04:35 +01:00
2022-03-22 13:04:35 +01:00
2022-03-22 13:04:35 +01:00
2022-04-26 18:12:22 +02:00
2022-03-15 14:48:08 +01:00
2022-04-26 18:12:22 +02:00
2022-04-26 18:12:22 +02:00
2022-01-18 12:47:07 +01:00
2022-01-18 12:47:07 +01:00
2022-04-26 15:05:20 +02:00
2020-12-22 13:34:31 -05:00
2022-04-26 18:12:22 +02:00
2022-04-26 18:12:22 +02:00