mirror of
https://github.com/restic/restic.git
synced 2025-04-26 15:10:47 +00:00
14 lines
255 B
Go
14 lines
255 B
Go
![]() |
package main
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"testing"
|
||
|
|
||
|
rtest "github.com/restic/restic/internal/test"
|
||
|
)
|
||
|
|
||
|
func testRunForget(t testing.TB, gopts GlobalOptions, args ...string) {
|
||
|
opts := ForgetOptions{}
|
||
|
rtest.OK(t, runForget(context.TODO(), opts, gopts, args))
|
||
|
}
|