about summary refs log tree commit homepage
path: root/test/test_mall.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_mall.rb')
-rw-r--r--test/test_mall.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/test_mall.rb b/test/test_mall.rb
index 1bbff85..5472acb 100644
--- a/test/test_mall.rb
+++ b/test/test_mall.rb
@@ -32,6 +32,20 @@ class TestMall < Test::Unit::TestCase
     end
   end
 
+  def test_xml
+    if Mall.respond_to?(:xml)
+      str = Mall.xml
+      assert_match /<malloc version=/, str
+
+      tmp = []
+      assert_equal tmp, Mall.xml(0, tmp)
+      assert_match /<malloc version=/, tmp[0]
+      assert_equal 1, tmp.size
+    else
+      warn "Mall.xml not supported"
+    end
+  end
+
   def test_dump_stats
     if Mall.respond_to?(:dump_stats)
       olderr = $stderr.dup