mirror of
https://github.com/token2/snapd.git
synced 2026-03-13 11:15:47 -07:00
This commit avoids extra imports in timeouts.go and tweaks the TimeoutTestSuite to follow the testutil_test pattern and adds a MockRuntimeARCH() helper.
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
// -*- Mode: Go; indent-tabs-mode: t -*-
|
|
|
|
/*
|
|
* Copyright (C) 2015-2018 Canonical Ltd
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 3 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
package testutil
|
|
|
|
import (
|
|
"gopkg.in/check.v1"
|
|
)
|
|
|
|
func UnexpectedIntChecker(relation string) *intChecker {
|
|
return &intChecker{CheckerInfo: &check.CheckerInfo{Name: "unexpected", Params: []string{"a", "b"}}, rel: relation}
|
|
}
|
|
|
|
func MockShellcheckPath(p string) (restore func()) {
|
|
old := shellcheckPath
|
|
shellcheckPath = p
|
|
return func() {
|
|
shellcheckPath = old
|
|
}
|
|
}
|
|
|
|
func MockRuntimeARCH(new string) (restore func()) {
|
|
old := runtimeGOARCH
|
|
runtimeGOARCH = new
|
|
return func() {
|
|
runtimeGOARCH = old
|
|
}
|
|
}
|