Files
object-browser/restapi/user_logout_test.go
2023-03-22 15:06:04 -06:00

30 lines
1011 B
Go

// This file is part of MinIO Console Server
// Copyright (c) 2021 MinIO, Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// 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 Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package restapi
import "testing"
// mock function of Get()
func (ac consoleCredentialsMock) Expire() {
// Do nothing
// Implementing this method for the consoleCredentials interface
}
func TestLogout(_ *testing.T) {
// There's nothing to test right now
}