Author: jure
Date: Tue Mar 5 12:54:36 2013
New Revision: 1452779
URL: http://svn.apache.org/r1452779
Log:
#355, test cases for ticket wiki syntax, patch
t355_r1452271_trac_test_ticket_wikisyntax.diff applied (from Olemis)
Added:
incubator/bloodhound/branches/bep_0003_multiproduct/bloodhound_multiproduct/tests/ticket/wikisyntax.py
Added:
incubator/bloodhound/branches/bep_0003_multiproduct/bloodhound_multiproduct/tests/ticket/wikisyntax.py
URL:
http://svn.apache.org/viewvc/incubator/bloodhound/branches/bep_0003_multiproduct/bloodhound_multiproduct/tests/ticket/wikisyntax.py?rev=1452779&view=auto
==============================================================================
---
incubator/bloodhound/branches/bep_0003_multiproduct/bloodhound_multiproduct/tests/ticket/wikisyntax.py
(added)
+++
incubator/bloodhound/branches/bep_0003_multiproduct/bloodhound_multiproduct/tests/ticket/wikisyntax.py
Tue Mar 5 12:54:36 2013
@@ -0,0 +1,60 @@
+
+# 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 ticket wiki syntax
+in product environments"""
+
+import os.path
+import re
+import unittest
+
+from trac.ticket.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.TICKET_TEST_CASES,
+ wikisyntax.ticket_setup,
+ wikisyntax.__file__,
+ wikisyntax.ticket_teardown))
+ suite.addTest(formatter.test_suite(wikisyntax.REPORT_TEST_CASES,
+ wikisyntax.report_setup,
+ wikisyntax.__file__))
+ suite.addTest(formatter.test_suite(wikisyntax.MILESTONE_TEST_CASES,
+ wikisyntax.milestone_setup,
+ wikisyntax.__file__,
+ wikisyntax.milestone_teardown))
+ suite.addTest(formatter.test_suite(wikisyntax.QUERY_TEST_CASES,
+ wikisyntax.ticket_setup,
+ wikisyntax.__file__,
+ wikisyntax.ticket_teardown))
+ suite.addTest(formatter.test_suite(wikisyntax.QUERY2_TEST_CASES,
+ wikisyntax.query2_setup,
+ wikisyntax.__file__,
+ wikisyntax.query2_teardown))
+ suite.addTest(formatter.test_suite(wikisyntax.COMMENT_TEST_CASES,
+ file=wikisyntax.__file__))
+ return suite
+
+
+if __name__ == '__main__':
+ unittest.main(defaultTest='test_suite')
+