From e3f47a800ad157e5b61743a6d6d4e85de8c0dbd0 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 25 Jul 2010 14:50:47 +0200 Subject: [PATCH] Actually test the JSON builder. --- tests/test_build.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_build.py b/tests/test_build.py index f18ff1754..d571febd7 100644 --- a/tests/test_build.py +++ b/tests/test_build.py @@ -21,6 +21,10 @@ def teardown_module(): def test_pickle(app): app.builder.build_all() +@with_app(buildername='json') +def test_json(app): + app.builder.build_all() + @with_app(buildername='linkcheck') def test_linkcheck(app): app.builder.build_all()