mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-07 17:51:30 +08:00
15 lines
193 B
Go
15 lines
193 B
Go
package process
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestID(t *testing.T) {
|
|
t.Run("Matches", func(t *testing.T) {
|
|
assert.Equal(t, os.Getpid(), ID)
|
|
})
|
|
}
|