2022-11-03 13:54:49 +00:00
|
|
|
package e2etests
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func testRegression(t *testing.T) {
|
2022-12-05 19:10:45 +00:00
|
|
|
tcs := []testCase{
|
|
|
|
|
{
|
2022-12-05 19:40:21 +00:00
|
|
|
name: "dagre_id_with_newline",
|
|
|
|
|
script: `
|
|
|
|
|
ninety\nnine
|
|
|
|
|
eighty\reight
|
|
|
|
|
seventy\r\nseven
|
|
|
|
|
`,
|
2022-12-05 19:10:45 +00:00
|
|
|
},
|
|
|
|
|
}
|
2022-11-03 13:54:49 +00:00
|
|
|
|
|
|
|
|
runa(t, tcs)
|
|
|
|
|
}
|