Add IsNull() check in test after reassignment (#814)

This commit is contained in:
Ted Lyngmo 2020-02-07 17:52:43 +01:00 committed by GitHub
parent 9ab22ef493
commit ce056acab7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,6 +7,7 @@ namespace {
TEST(LoadNodeTest, Reassign) {
Node node = Load("foo");
node = Node();
EXPECT_TRUE(node.IsNull());
}
TEST(LoadNodeTest, FallbackValues) {