This repository has been archived by the owner on Oct 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from rebuy-de/fix-waiter
fix waiter
- Loading branch information
Showing
2 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package waiter | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/rebuy-de/kubernetes-deployment/pkg/interceptors" | ||
) | ||
|
||
func TestTypePostApplier(t *testing.T) { | ||
var inter interceptors.PostApplier | ||
inter = &DeploymentWaitInterceptor{} | ||
_ = inter | ||
} | ||
|
||
func TestTypePreManifestApplier(t *testing.T) { | ||
var inter interceptors.PreManifestApplier | ||
inter = &DeploymentWaitInterceptor{} | ||
_ = inter | ||
} | ||
|
||
func TestTypeCloser(t *testing.T) { | ||
var inter interceptors.Closer | ||
inter = &DeploymentWaitInterceptor{} | ||
_ = inter | ||
} |