File: plain_test.go

package info (click to toggle)
golang-github-jimstudt-http-authentication 0.0~git20140401.3eca13d-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 284 kB
  • sloc: makefile: 2
file content (11 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
package basic

import (
	"testing"
)

func Test_Plain(t *testing.T) {
	testParserGood(t, "plain", AcceptPlain, RejectPlain, "bar", "bar")
	//testParserBad() plain takes anything
	// testParserNot()  plain takes anything
}