mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-04-26 21:05:30 +00:00
16 lines
276 B
Go
16 lines
276 B
Go
package framer_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/jwetzell/showbridge-go/internal/framer"
|
|
)
|
|
|
|
func TestNilGetFramer(t *testing.T) {
|
|
nilFramer := framer.GetFramer("asldfiudchuehrkbjbkjrbb")
|
|
|
|
if nilFramer != nil {
|
|
t.Fatalf("Expected nil framer, got %v", nilFramer)
|
|
}
|
|
}
|