0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-11-04 08:34:30 +01:00
gitea/models/migrations/v1_26/v324_test.go
2025-10-27 11:28:00 -07:00

21 lines
419 B
Go

// Copyright 2025 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package v1_26
import (
"testing"
"code.gitea.io/gitea/models/migrations/base"
"github.com/stretchr/testify/assert"
)
func Test_CreateTableIssueDevLink(t *testing.T) {
// Prepare and load the testing database
x, deferable := base.PrepareTestEnv(t, 0)
defer deferable()
assert.NoError(t, CreateTableIssueDevLink(x))
}