| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #include <QByteArray> | ||
| 2 | |||
| 3 | namespace test_qi3pc{ | ||
| 4 | namespace raw { | ||
| 5 | namespace data { | ||
| 6 | inline static auto config = QByteArrayLiteral(R"( | ||
| 7 | { | ||
| 8 | "config": "include font.cfg\n", | ||
| 9 | "included_configs": [ | ||
| 10 | { | ||
| 11 | "path": "/home/michael/configfiles/i3/config", | ||
| 12 | "raw_contents": "include font.cfg\n", | ||
| 13 | "variable_replaced_contents": "include font.cfg\n" | ||
| 14 | }, | ||
| 15 | { | ||
| 16 | "path": "/home/michael/configfiles/i3/font.cfg", | ||
| 17 | "raw_contents": "set $font pango:monospace 8\nfont $font", | ||
| 18 | "variable_replaced_contents": "set pango:monospace 8 pango:monospace 8\nfont pango:monospace 8\n" | ||
| 19 | } | ||
| 20 | ] | ||
| 21 | } | ||
| 22 | )"); | ||
| 23 | } // namespace data | ||
| 24 | } // namespace raw | ||
| 25 | } // namespace test_qi3pc | ||
| 26 |