summaryrefslogtreecommitdiffstats
path: root/fedoracoreos/fcos_test.go
blob: 64b13a31d18e12aee8654173e599d2fa60394d75 (plain)
1
2
3
4
5
6
7
8
9
10
package fedoracoreos

import "testing"

func TestGetStreamURL(t *testing.T) {
	u := GetStreamURL(StreamStable)
	if u.String() != "https://builds.coreos.fedoraproject.org/streams/stable.json" {
		t.Fatalf("Invalid stream url")
	}
}