Skip to content
Snippets Groups Projects
Commit 65c1ecf3 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Test an already-working case as a form of documentation

parent 70c79298
No related branches found
No related tags found
1 merge request!1Basic NixOS Private Storage service module
...@@ -56,4 +56,9 @@ ini: ...@@ -56,4 +56,9 @@ ini:
{ expected = "x = 12345\n"; { expected = "x = 12345\n";
expr = ini.oneConfigItemText "x" 12345; expr = ini.oneConfigItemText "x" 12345;
}; };
test_dotted_key =
{ expected = "x.y = z\n";
expr = ini.oneConfigItemText "x.y" "z";
};
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment