diff --git a/internal/resource/mock_command_test.go b/internal/resource/mock_command_test.go new file mode 100644 index 0000000..73fa351 --- /dev/null +++ b/internal/resource/mock_command_test.go @@ -0,0 +1,17 @@ +// Copyright 2024 Matthew Rich . All rights reserved. + +package resource + +import ( +_ "fmt" +_ "github.com/stretchr/testify/assert" +_ "os" +_ "strings" +_ "testing" +) + +type MockCommand Command + +func (m *MockCommand) Execute(value any) ([]byte, error) { + return nil, nil +}