You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package main |
|
|
|
import ( |
|
"testing" |
|
) |
|
|
|
func TestMessageExists(t *testing.T) { |
|
resetDB() |
|
message := "TEXT.49S2F3Y6AXHDD8F62RKXPFWC2BYBV5D16VQY34F40NTQFZW1R0G0" |
|
ok := messageExists(message) |
|
if ok { |
|
t.Fail() |
|
} |
|
}
|
|
|