Esempio n. 1
0
if __name__ == '__main__':
    from agilo.test.testfinder import run_all_tests
    run_all_tests(root_dir=__file__)

Esempio n. 2
0
# -*- coding: utf-8 -*-

from trac.tests.functional import tc

from agilo.test import Usernames
from agilo.test.functional import AgiloFunctionalTestCase


class TestQueryWithMultipleTypeParameters(AgiloFunctionalTestCase):
    """Test that a user build queries with multiple parameters of the same type
    (see bug #363)."""
    def runTest(self):
        self.tester.login_as(Usernames.product_owner)
        query_url = self.tester.url + "/query?type=!bug&type=!enhancement"
        tc.go(query_url)
        tc.code(200)


if __name__ == '__main__':
    from agilo.test.testfinder import run_all_tests
    run_all_tests(__file__)

Esempio n. 3
0
# -*- encoding: utf-8 -*-
#   Copyright 2008 Agile42 GmbH, Berlin (Germany)
#   Copyright 2007 Andrea Tomasini <andrea.tomasini_at_agile42.com>
#   Copyright 2011 Agilo Software GmbH All rights reserved
#
#   Licensed 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.
#
#   Author:
#       - Felix Schwarz <felix.schwarz__at__agile42.com>
#       - Roberto Bettazzoni <roberto.bettazzoni__at__agile42.com>

if __name__ == '__main__':
    from agilo.test.testfinder import run_all_tests
    run_all_tests()
Esempio n. 4
0

if __name__ == '__main__':
    from agilo.test.testfinder import run_all_tests
    run_all_tests(root_dir=__file__)

Esempio n. 5
0
# -*- encoding: utf-8 -*-
#   Copyright 2008 Agile42 GmbH, Berlin (Germany)
#   Copyright 2007 Andrea Tomasini <andrea.tomasini_at_agile42.com>
#   Copyright 2011 Agilo Software GmbH All rights reserved
#
#   Licensed 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.
#   
#   Author: 
#       - Felix Schwarz <felix.schwarz__at__agile42.com>
#       - Roberto Bettazzoni <roberto.bettazzoni__at__agile42.com>

if __name__ == '__main__':
    from agilo.test.testfinder import run_all_tests
    run_all_tests()