diff options
Diffstat (limited to 'modules/sync/status_pool_test.go')
-rw-r--r-- | modules/sync/status_pool_test.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/sync/status_pool_test.go b/modules/sync/status_pool_test.go new file mode 100644 index 0000000000..61e5a27329 --- /dev/null +++ b/modules/sync/status_pool_test.go @@ -0,0 +1,19 @@ +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")) +} |