Welcome to mirror list, hosted at ThFree Co, Russian Federation.

zbx_dyn_escape_string.yaml « zbxcommon « libs « tests - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f1f4a48001dbd86cadec068e63b78daafda04bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
test case: double quotes
in:
  data: '-"value"-'
  escape_chars: '\"'
out:
  result: '-\"value\"-'
---
test case: backslash
in:
  data: '\value\'
  escape_chars: '\"'
out:
  result: '\\value\\'
...