fix empty key
This commit is contained in:
parent
391ba8e797
commit
d7341373d4
|
@ -28,7 +28,7 @@ private:
|
||||||
*/
|
*/
|
||||||
@property bool empty()
|
@property bool empty()
|
||||||
{
|
{
|
||||||
return this.property.length = 0;
|
return this.property.length == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -13,10 +13,8 @@ unittest
|
||||||
assert(Config.file.key("value7") == "1234567890");
|
assert(Config.file.key("value7") == "1234567890");
|
||||||
assert(Config.file.key("value8") == "12345.67890");
|
assert(Config.file.key("value8") == "12345.67890");
|
||||||
assert(Config.file.key("value9") == "You can use large margins");
|
assert(Config.file.key("value9") == "You can use large margins");
|
||||||
assert(!Config.file.key("value10").empty);
|
assert(Config.file.key("value10").empty);
|
||||||
assert(Config.file.key("value10") == "");
|
assert(Config.file.key("value11").empty);
|
||||||
assert(!Config.file.key("value11").empty);
|
|
||||||
assert(Config.file.key("value11") == "");
|
|
||||||
assert(Config.file.key("value12") == "//path");
|
assert(Config.file.key("value12") == "//path");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue