shithub: hugo

ref: 0c66ad87759d40a5d5e9454d8a143bd81ab237a6
dir: /transform/livereloadinject_test.go/

View raw version
package transform

import (
	"bytes"
	"github.com/spf13/hugo/helpers"
	"testing"
)

func TestLiveReloadInject(t *testing.T) {
	out := new(bytes.Buffer)
	in := helpers.StringToReader("</body>")

	tr := NewChain(LiveReloadInject)
	tr.Apply(out, in, []byte("path"))

	expected := `<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>`
	if string(out.Bytes()) != expected {
		t.Errorf("Expected %s got %s", expected, string(out.Bytes()))
	}
}