15 lines
332 B
Go
15 lines
332 B
Go
package tv
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ollien/gobbler/categorize/location"
|
|
)
|
|
|
|
func TestLocationsImplementsInterface(t *testing.T) {
|
|
// this test doesn't assert anything. It's just used as a compile time check to make sure that these types
|
|
// implement the MediaLocation interface
|
|
|
|
_ = location.MediaLocation(Location{})
|
|
}
|