mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-04 22:34:39 +02:00
Use tmpdir for tests
This commit is contained in:
parent
64224e7caa
commit
6160d85d4f
@ -3,6 +3,7 @@ package oscommands
|
||||
import (
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
@ -145,7 +146,7 @@ func TestOSCommandAppendLineToFile(t *testing.T) {
|
||||
|
||||
scenarios := []scenario{
|
||||
{
|
||||
"testFile",
|
||||
filepath.Join(os.TempDir(), "testFile"),
|
||||
func(path string) {
|
||||
if err := ioutil.WriteFile(path, []byte("hello"), 0o600); err != nil {
|
||||
panic(err)
|
||||
@ -153,7 +154,7 @@ func TestOSCommandAppendLineToFile(t *testing.T) {
|
||||
},
|
||||
},
|
||||
{
|
||||
"testFileWithNewline",
|
||||
filepath.Join(os.TempDir(), "testFileWithNewline"),
|
||||
func(path string) {
|
||||
if err := ioutil.WriteFile(path, []byte("hello\n"), 0o600); err != nil {
|
||||
panic(err)
|
||||
|
Loading…
x
Reference in New Issue
Block a user