Commit a9ef6bc9 authored by Mygod's avatar Mygod

Ensure #2391 is fixed

parent b64dd245
......@@ -36,6 +36,12 @@ class PluginOptionsTest {
Assert.assertEquals(true, o3 == o4)
}
@Test
fun nullValues() {
val o = PluginOptions("", "a;b;c;d=3")
Assert.assertEquals(true, o == PluginOptions("", o.toString()))
}
@Test
fun escape() {
val options = PluginOptions("escapeTest")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment