You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by ju...@apache.org on 2013/02/22 15:05:44 UTC

svn commit: r1449049 - /incubator/bloodhound/branches/bep_0003_multiproduct/bloodhound_multiproduct/tests/wiki/wikisyntax.py

Author: jure
Date: Fri Feb 22 14:05:43 2013
New Revision: 1449049

URL: http://svn.apache.org/r1449049
Log:
#355, wiki syntax test cases, patch t355_r1446579_trac_test_wiki_syntax.diff applied (from Olemis)


Added:
    incubator/bloodhound/branches/bep_0003_multiproduct/bloodhound_multiproduct/tests/wiki/wikisyntax.py

Added: incubator/bloodhound/branches/bep_0003_multiproduct/bloodhound_multiproduct/tests/wiki/wikisyntax.py
URL: http://svn.apache.org/viewvc/incubator/bloodhound/branches/bep_0003_multiproduct/bloodhound_multiproduct/tests/wiki/wikisyntax.py?rev=1449049&view=auto
==============================================================================
--- incubator/bloodhound/branches/bep_0003_multiproduct/bloodhound_multiproduct/tests/wiki/wikisyntax.py (added)
+++ incubator/bloodhound/branches/bep_0003_multiproduct/bloodhound_multiproduct/tests/wiki/wikisyntax.py Fri Feb 22 14:05:43 2013
@@ -0,0 +1,56 @@
+
+#  Licensed to the Apache Software Foundation (ASF) under one
+#  or more contributor license agreements.  See the NOTICE file
+#  distributed with this work for additional information
+#  regarding copyright ownership.  The ASF licenses this file
+#  to you under the Apache License, Version 2.0 (the
+#  "License"); you may not use this file except in compliance
+#  with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+#  Unless required by applicable law or agreed to in writing,
+#  software distributed under the License is distributed on an
+#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#  KIND, either express or implied.  See the License for the
+#  specific language governing permissions and limitations
+#  under the License.
+
+"""Tests for inherited Apache(TM) Bloodhound's wiki syntax 
+in product environments"""
+
+import os.path
+import re
+import unittest
+
+from trac.wiki.tests import wikisyntax
+
+from multiproduct.env import ProductEnvironment
+from tests.env import MultiproductTestCase
+from tests.wiki import formatter
+
+def test_suite():
+    suite = unittest.TestSuite()
+    suite.addTest(formatter.test_suite(wikisyntax.TEST_CASES, 
+                                  wikisyntax.wiki_setup, wikisyntax.__file__,
+                                  wikisyntax.wiki_teardown))
+    suite.addTest(formatter.test_suite(wikisyntax.RELATIVE_LINKS_TESTS, 
+                                  wikisyntax.wiki_setup, wikisyntax.__file__,
+                                  wikisyntax.wiki_teardown,
+                                  context=('wiki', 'Main/Sub')))
+    suite.addTest(formatter.test_suite(wikisyntax.SPLIT_PAGE_NAMES_TESTS, 
+                                  wikisyntax.wiki_setup_split, 
+                                  wikisyntax.__file__, 
+                                  wikisyntax.wiki_teardown,
+                                  context=('wiki', 'Main/Sub')))
+    suite.addTest(formatter.test_suite(wikisyntax.SCOPED_LINKS_TESTS, 
+                                  wikisyntax.wiki_setup, wikisyntax.__file__,
+                                  wikisyntax.wiki_teardown,
+                                  context=('wiki',
+                                      'FirstLevel/SecondLevel/ThirdLevel')))
+    return suite
+
+
+if __name__ == '__main__':
+    unittest.main(defaultTest='test_suite')
+