package main
import (
"testing"
)
func TestObfusbreak(t *testing.T) {
input := `link to https://example.com/ with **bold** text`
output := `link to https://example.com/ with bold text`
tmp := obfusbreak(input)
if tmp != output {
t.Errorf("%s is not %s", tmp, output)
}
}