Author: jure
Date: Fri Feb 22 14:06:52 2013
New Revision: 1449050
URL: http://svn.apache.org/r1449050
Log:
#355, htdocs wiki syntax tests, patch
t355_r1444754_trac_test_web_wikisyntax.diff applied (from Olemis)
Added:
incubator/bloodhound/branches/bep_0003_multiproduct/bloodhound_multiproduct/tests/web/wikisyntax.py
Added:
incubator/bloodhound/branches/bep_0003_multiproduct/bloodhound_multiproduct/tests/web/wikisyntax.py
URL:
http://svn.apache.org/viewvc/incubator/bloodhound/branches/bep_0003_multiproduct/bloodhound_multiproduct/tests/web/wikisyntax.py?rev=1449050&view=auto
==============================================================================
---
incubator/bloodhound/branches/bep_0003_multiproduct/bloodhound_multiproduct/tests/web/wikisyntax.py
(added)
+++
incubator/bloodhound/branches/bep_0003_multiproduct/bloodhound_multiproduct/tests/web/wikisyntax.py
Fri Feb 22 14:06:52 2013
@@ -0,0 +1,38 @@
+
+# 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 htdocs wiki syntax
+in product environments"""
+
+import os.path
+import re
+import unittest
+
+from trac.web.tests import wikisyntax
+
+from multiproduct.env import ProductEnvironment
+from tests.env import MultiproductTestCase
+from tests.wiki import formatter
+
+def test_suite():
+ return formatter.test_suite(wikisyntax.TEST_CASES,
file=wikisyntax.__file__)
+
+
+if __name__ == '__main__':
+ unittest.main(defaultTest='test_suite')
+