Sha256: 32c9591655c6fb118dfefcb4de49a04820a63cb960533dfc2538cdaabf4f4047

Contents?: true

Size: 1.46 KB

Versions: 30

Compression:

Stored size: 1.46 KB

Contents

[[test]]
name = "ascii-literal"
regex = "a"
haystack = "a"
matches = [[0, 1]]

[[test]]
name = "ascii-literal-not"
regex = "a"
haystack = "z"
matches = []

[[test]]
name = "ascii-literal-anchored"
regex = "a"
haystack = "a"
matches = [[0, 1]]
anchored = true

[[test]]
name = "ascii-literal-anchored-not"
regex = "a"
haystack = "z"
matches = []
anchored = true

[[test]]
name = "anchor-start-end-line"
regex = '(?m)^bar$'
haystack = "foo\nbar\nbaz"
matches = [[4, 7]]

[[test]]
name = "prefix-literal-match"
regex = '^abc'
haystack = "abc"
matches = [[0, 3]]

[[test]]
name = "prefix-literal-match-ascii"
regex = '^abc'
haystack = "abc"
matches = [[0, 3]]
unicode = false
utf8 = false

[[test]]
name = "prefix-literal-no-match"
regex = '^abc'
haystack = "zabc"
matches = []

[[test]]
name = "one-literal-edge"
regex = 'abc'
haystack = "xxxxxab"
matches = []

[[test]]
name = "terminates"
regex = 'a$'
haystack = "a"
matches = [[0, 1]]

[[test]]
name = "suffix-100"
regex = '.*abcd'
haystack = "abcd"
matches = [[0, 4]]

[[test]]
name = "suffix-200"
regex = '.*(?:abcd)+'
haystack = "abcd"
matches = [[0, 4]]

[[test]]
name = "suffix-300"
regex = '.*(?:abcd)+'
haystack = "abcdabcd"
matches = [[0, 8]]

[[test]]
name = "suffix-400"
regex = '.*(?:abcd)+'
haystack = "abcdxabcd"
matches = [[0, 9]]

[[test]]
name = "suffix-500"
regex = '.*x(?:abcd)+'
haystack = "abcdxabcd"
matches = [[0, 9]]

[[test]]
name = "suffix-600"
regex = '[^abcd]*x(?:abcd)+'
haystack = "abcdxabcd"
matches = [[4, 9]]

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
wasmtime-14.0.3 ./ext/cargo-vendor/regex-1.10.2/testdata/misc.toml
wasmtime-14.0.1 ./ext/cargo-vendor/regex-1.10.2/testdata/misc.toml
wasmtime-14.0.0 ./ext/cargo-vendor/regex-1.10.2/testdata/misc.toml
wasmtime-13.0.0 ./ext/cargo-vendor/regex-1.9.3/testdata/misc.toml
wasmtime-12.0.1 ./ext/cargo-vendor/regex-1.9.3/testdata/misc.toml
wasmtime-12.0.0 ./ext/cargo-vendor/regex-1.9.3/testdata/misc.toml
wasmtime-11.0.0 ./ext/cargo-vendor/regex-1.9.3/testdata/misc.toml
wasmtime-10.0.1 ./ext/cargo-vendor/regex-1.9.3/testdata/misc.toml
wasmtime-10.0.0 ./ext/cargo-vendor/regex-1.9.3/testdata/misc.toml
wasmtime-9.0.4 ./ext/cargo-vendor/regex-1.9.3/testdata/misc.toml