コード例 #1
0
    def test_should_return_non_when_plugin_is_refused_uppercase(self, prompt):
        prompt.return_value = 'N'

        self.assertEqual(suggest('plugin'), None)
コード例 #2
0
    def test_should_return_plugin_when_plugin_is_chosen_uppercase(
            self, prompt):
        prompt.return_value = 'Y'

        self.assertEqual(suggest('plugin'), 'plugin')
コード例 #3
0
    def test_should_return_plugin_when_choice_is_skipped(self, prompt):
        prompt.return_value = ''

        self.assertEqual(suggest('plugin'), 'plugin')
コード例 #4
0
ファイル: scaffolding_tests.py プロジェクト: B-Rich/pybuilder
    def test_should_return_non_when_plugin_is_refused_uppercase(self, prompt):
        prompt.return_value = 'N'

        self.assertEqual(suggest('plugin'), None)
コード例 #5
0
ファイル: scaffolding_tests.py プロジェクト: B-Rich/pybuilder
    def test_should_return_plugin_when_plugin_is_chosen_uppercase(self, prompt):
        prompt.return_value = 'Y'

        self.assertEqual(suggest('plugin'), 'plugin')
コード例 #6
0
ファイル: scaffolding_tests.py プロジェクト: B-Rich/pybuilder
    def test_should_return_plugin_when_choice_is_skipped(self, prompt):
        prompt.return_value = ''

        self.assertEqual(suggest('plugin'), 'plugin')