testing selections a bit
parent
8659b230c8
commit
75849b2f36
@ -0,0 +1,33 @@
|
||||
package tea
|
||||
|
||||
// these constant tests are useful for testing things that manipulate the
|
||||
// graph.
|
||||
|
||||
const (
|
||||
A = Passing("A")
|
||||
B = Passing("B")
|
||||
C = Passing("C")
|
||||
D = Passing("D")
|
||||
E = Passing("E")
|
||||
F = Passing("F")
|
||||
G = Passing("G")
|
||||
H = Passing("H")
|
||||
I = Passing("I")
|
||||
J = Passing("J")
|
||||
K = Passing("K")
|
||||
L = Passing("L")
|
||||
M = Passing("M")
|
||||
N = Passing("N")
|
||||
O = Passing("O")
|
||||
P = Passing("P")
|
||||
Q = Passing("Q")
|
||||
R = Passing("R")
|
||||
S = Passing("S")
|
||||
T = Passing("T")
|
||||
U = Passing("U")
|
||||
V = Passing("V")
|
||||
W = Passing("W")
|
||||
X = Passing("X")
|
||||
Y = Passing("Y")
|
||||
Z = Passing("Z")
|
||||
)
|
@ -0,0 +1,9 @@
|
||||
package tea
|
||||
|
||||
import (
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestXNodeDot(t *testing.T) {
|
||||
|
||||
}
|
Loading…
Reference in New Issue