diff --git a/tests/test_document.cpp b/tests/test_document.cpp
index c2f55a79df7f9c084a5dc59b05650e1625c73e42..fa0dc8de2d957aa4dc2e0e749adda5b66ce72551 100644
--- a/tests/test_document.cpp
+++ b/tests/test_document.cpp
@@ -1691,10 +1691,10 @@ TEST(document_move_append_child)
 	xml_document other = std::move(*doc);
 	delete doc;
 
-	for (int i = 0; i < 1000; ++i)
+	for (int i = 0; i < 3000; ++i)
 		other.child(STR("node1")).append_child(STR("node"));
 
-	for (int i = 0; i < 1000; ++i)
+	for (int i = 0; i < 3000; ++i)
 		other.child(STR("node1")).remove_child(other.child(STR("node1")).last_child());
 
 	CHECK_NODE(other, STR("<node1 attr1=\"value1\"><node2/></node1>"));
@@ -1703,4 +1703,27 @@ TEST(document_move_append_child)
 
 	CHECK(!other.first_child());
 }
+
+TEST(document_move_empty)
+{
+	xml_document* doc = new xml_document();
+	xml_document other = std::move(*doc);
+	delete doc;
+}
+
+TEST(document_move_large)
+{
+	xml_document* doc = new xml_document();
+
+	for (int i = 0; i < 3000; ++i)
+		doc->append_child(STR("node"));
+
+	xml_document other = std::move(*doc);
+	delete doc;
+
+	for (int i = 0; i < 3000; ++i)
+		CHECK(other.remove_child(other.first_child()));
+
+	CHECK(!other.first_child());
+}
 #endif