diff --git a/src/test.cpp b/src/test.cpp index f81f2910c..52782fa36 100644 --- a/src/test.cpp +++ b/src/test.cpp @@ -314,6 +314,26 @@ struct TestSerialization: public TestBase } }; +struct TestNodedefSerialization: public TestBase +{ + void Run() + { + ContentFeatures f; + f.name = "default:stone"; + for(int i = 0; i < 6; i++) + f.tiledef[i].name = "default_stone.png"; + f.is_ground_content = true; + std::ostringstream os(std::ios::binary); + f.serialize(os); + verbosestream<<"Test ContentFeatures size: "<