コード例 #1
0
    def startup_hanfor(self, args, user_mock_answers):
        global mock_results
        global count
        count = -1
        mock_results = user_mock_answers

        startup_hanfor(args, HERE)
コード例 #2
0
    def startup_hanfor(self, args, user_mock_answers):
        global mock_results
        global count
        count = -1
        mock_results = user_mock_answers

        startup_hanfor(args, HERE)
        app.config['TEMPLATES_FOLDER'] = os.path.join(HERE, '..', 'templates')
コード例 #3
0
    def startup_hanfor(self, csv_file, session_tag, user_mock_answers):
        global mock_results
        global count
        count = -1

        csv_file = os.path.join(self.test_session_base_folder, session_tag,
                                csv_file)
        args = utils.HanforArgumentParser(app).parse_args(
            [session_tag, '-c', csv_file])
        mock_results = user_mock_answers

        startup_hanfor(args, self.here)
        app.config['TEMPLATES_FOLDER'] = os.path.join(self.here, '..',
                                                      'templates')
コード例 #4
0
ファイル: test_init.py プロジェクト: ultimate-pa/hanfor
    def startup_hanfor(self, args, user_inputs):
        global mock_results
        mock_results = user_inputs

        startup_hanfor(args, HERE)