ref: 545c10329eb79633bf2dad81fd32576fd486b0da
dir: /style/experimental_test.go/
package style import ( "github.com/chris-ramon/douceur/css" "testing" ) func TestBackgroundImageUrl(t *testing.T) { suffix := "" for _, quote := range []string{"", "'", `"`} { url := "/foo.png" decl := css.Declaration{ Value: "url(" + quote + url + quote + ")" + suffix, } imgUrl, ok := backgroundImageUrl(decl) if !ok { t.Fatalf("not ok") } if imgUrl != url { t.Fatalf("expected %+v but got %+v", url, imgUrl) } } }