openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #23886
Re: [Merge] lp:~phill-ridout/openlp/bug1336020 into lp:openlp
Review: Needs Information
See below
Diff comments:
> === modified file 'tests/functional/openlp_core_lib/test_file_dialog.py'
> --- tests/functional/openlp_core_lib/test_file_dialog.py 2014-04-20 20:19:21 +0000
> +++ tests/functional/openlp_core_lib/test_file_dialog.py 2014-06-30 21:12:19 +0000
> @@ -65,11 +65,11 @@
>
> # THEN: os.path.exists should have been called with known args. QmessageBox.information should have been
> # called. The returned result should correlate with the input.
> - self.mocked_os.path.exists.assert_callde_with('/Valid File')
> - self.mocked_os.path.exists.assert_callde_with('/url%20encoded%20file%20%231')
> - self.mocked_os.path.exists.assert_callde_with('/url encoded file #1')
> - self.mocked_os.path.exists.assert_callde_with('/non-existing')
> - self.mocked_os.path.exists.assert_callde_with('/non-existing')
> + self.mocked_os.path.exists.assert_any_call('/Valid File')
> + self.mocked_os.path.exists.assert_any_call('/url%20encoded%20file%20%231')
> + self.mocked_os.path.exists.assert_any_call('/url encoded file #1')
> + self.mocked_os.path.exists.assert_any_call('/non-existing')
Why twice?
> + self.mocked_os.path.exists.assert_any_call('/non-existing')
> self.mocked_qt_gui.QmessageBox.information.called_with(self.mocked_parent, UiStrings().FileNotFound,
> UiStrings().FileNotFoundMessage % '/non-existing')
> self.assertEqual(result, ['/Valid File', '/url encoded file #1'], 'The returned file list is incorrect')
>
--
https://code.launchpad.net/~phill-ridout/openlp/bug1336020/+merge/225085
Your team OpenLP Core is subscribed to branch lp:openlp.
References