ref: 3f00959ef22dc6e77ab658fa4d9de891936df09c
dir: /pages_test.go/
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) } }