MCPcopy Create free account
hub / github.com/dropbox/dbxcli / stubDropboxVersion

Function stubDropboxVersion

cmd/version_test.go:79–89  ·  view source on GitHub ↗
(t *testing.T, sdkVersion, specVersion string)

Source from the content-addressed store, hash-verified

77}
78
79func stubDropboxVersion(t *testing.T, sdkVersion, specVersion string) {
80 t.Helper()
81
82 previous := dropboxVersionFunc
83 dropboxVersionFunc = func() (string, string) {
84 return sdkVersion, specVersion
85 }
86 t.Cleanup(func() {
87 dropboxVersionFunc = previous
88 })
89}

Calls

no outgoing calls

Tested by

no test coverage detected