hlfw.ca

webbing

ref: 7a634f81a9ae1100ef9f1c1d948a4a773c9e473c
dir: /pages_test.go/

View raw version
package pages

import (
	"testing"
	
	"github.com/olmaxmedical/router"
	_ "github.com/olmaxmedical/pages/doctor"
	_ "github.com/olmaxmedical/pages/help"
	_ "github.com/olmaxmedical/pages/patient"
)

// TestPages largely makes sure we get back real data from every page
func TestPages(t *testing.T) {
	if e := router.RunPages(); e != nil {
		t.Error(e)
	}
}