summaryrefslogtreecommitdiff
path: root/service/entry_test.go
blob: 5ca9c33866c5202606ba0281233168369317e156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package service

import (
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestEntry_CanServeFalse(t *testing.T) {
	e := &entry{svc: nil}
	assert.False(t, e.canServe())
}

func TestEntry_CanServeTrue(t *testing.T) {
	e := &entry{svc: &testService{}}
	assert.True(t, e.canServe())
}