mirror of https://github.com/adamdruppe/arsd.git
Add `parseIniMergedAA` example
This commit is contained in:
parent
e29d8fcd22
commit
5d31192edb
20
ini.d
20
ini.d
|
@ -106,6 +106,26 @@ module arsd.ini;
|
|||
assert(icon == "setup.exe,0");
|
||||
}
|
||||
|
||||
///
|
||||
@safe unittest {
|
||||
// INI example data (e.g. from an `autorun.inf` file)
|
||||
static immutable string rawIniData =
|
||||
"[autorun]\n"
|
||||
~ "open=setup.exe\n"
|
||||
~ "icon=setup.exe,0\n";
|
||||
|
||||
// Parse the document into a flat associative array.
|
||||
// (Sections would get merged, but there is only one section in the
|
||||
// example anyway.)
|
||||
string[string] data = parseIniMergedAA(rawIniData);
|
||||
|
||||
string open = data["open"];
|
||||
string icon = data["icon"];
|
||||
|
||||
assert(open == "setup.exe");
|
||||
assert(icon == "setup.exe,0");
|
||||
}
|
||||
|
||||
///
|
||||
@safe unittest {
|
||||
// INI example data (e.g. from an `autorun.inf` file):
|
||||
|
|
Loading…
Reference in New Issue