
**Backport:** https://codeberg.org/forgejo/forgejo/pulls/7337 - Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Co-authored-by: Gusted <postmaster@gusted.xyz> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7354 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org> Co-committed-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org>
21 lines
556 B
Go
21 lines
556 B
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package pam_test
|
|
|
|
import (
|
|
auth_model "forgejo.org/models/auth"
|
|
"forgejo.org/services/auth"
|
|
"forgejo.org/services/auth/source/pam"
|
|
)
|
|
|
|
// This test file exists to assert that our Source exposes the interfaces that we expect
|
|
// It tightly binds the interfaces and implementation without breaking go import cycles
|
|
|
|
type sourceInterface interface {
|
|
auth.PasswordAuthenticator
|
|
auth_model.Config
|
|
auth_model.SourceSettable
|
|
}
|
|
|
|
var _ (sourceInterface) = &pam.Source{}
|