1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-28 22:25:47 +00:00
gitea/modules/sync/status_pool_test.go

20 lines
307 B
Go
Raw Normal View History

package sync
import (
"testing"
"github.com/stretchr/testify/assert"
)
func Test_StatusTable(t *testing.T) {
table := NewStatusTable()
assert.False(t, table.IsRunning("xyz"))
table.Start("xyz")
assert.True(t, table.IsRunning("xyz"))
table.Stop("xyz")
assert.False(t, table.IsRunning("xyz"))
}