Gregory P. Smith
|
ac5084b6c7
|
Fixes issue28380: unittest.mock Mock autospec functions now properly support
assert_called, assert_not_called, and assert_called_once.
|
2016-10-06 14:31:23 -07:00 |
Berker Peksag
|
b3d4e7fe71
|
Issue #25651: Merge from 3.5
|
2016-09-21 19:35:28 +03:00 |
Berker Peksag
|
16ea19fc66
|
Issue #25651: Allow falsy values to be used for msg parameter of subTest()
|
2016-09-21 19:34:15 +03:00 |
Martin Panter
|
0be894b2f6
|
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
|
2016-09-07 12:03:06 +00:00 |
R David Murray
|
44b548dda8
|
#27364: fix "incorrect" uses of escape character in the stdlib.
And most of the tools.
Patch by Emanual Barry, reviewed by me, Serhiy Storchaka, and
Martin Panter.
|
2016-09-08 13:59:53 -04:00 |
Raymond Hettinger
|
15f44ab043
|
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
|
2016-08-30 10:47:49 -07:00 |
Raymond Hettinger
|
f74c33ad5c
|
Merge
|
2016-08-25 21:12:16 -07:00 |
Raymond Hettinger
|
7ea386e56e
|
Issue 19504: Change "customise" to "customize" American spelling.
|
2016-08-25 21:11:50 -07:00 |
Gregory P. Smith
|
d0d24fd1ae
|
Issue #26750: unittest.mock.create_autospec() now works properly for
subclasses of property() and other data descriptors. Removes the never
publicly used, never documented unittest.mock.DescriptorTypes tuple.
|
2016-08-07 09:06:27 -07:00 |
Gregory P. Smith
|
9854789efe
|
Issue #26750: unittest.mock.create_autospec() now works properly
for subclasses of property() and other data descriptors.
|
2016-08-07 08:52:26 -07:00 |
Berker Peksag
|
a9e1ebb780
|
Issue #27430: Merge from 3.5
|
2016-07-01 12:17:45 +03:00 |
Berker Peksag
|
e39682b076
|
Issue #27430: Fix typos, patch by scop.
|
2016-07-01 12:17:05 +03:00 |
Kushal Das
|
9cd39a170b
|
Issue #21271: Adds new keyword only parameters in reset_mock call
We now have two keyword only parameters in the reset_mock function to
selectively reset the return_value or the side_effects, or both.
|
2016-06-02 10:20:16 -07:00 |
Serhiy Storchaka
|
742206d95c
|
Issue #27063: Some unittest loader tests were silently skipped.
|
2016-05-20 23:29:07 +03:00 |
Serhiy Storchaka
|
0dad755600
|
Issue #27063: Some unittest loader tests were silently skipped.
|
2016-05-20 23:28:37 +03:00 |
Robert Collins
|
c85dd85f1a
|
Issue #26807: mock_open 'files' no longer error on readline at end of file.
Patch from Yolanda Robla.
|
2016-05-16 15:22:45 +12:00 |
Robert Collins
|
9549a3e3d4
|
Issue #26807: mock_open 'files' no longer error on readline at end of file.
Patch from Yolanda Robla.
|
2016-05-16 15:22:01 +12:00 |
Serhiy Storchaka
|
81e7f94076
|
Merge 3.5
|
2016-04-25 08:58:59 +03:00 |
Serhiy Storchaka
|
685fbed7f9
|
Issue #26837: assertSequenceEqual() now correctly outputs non-stringified
differing items (like bytes in the -b mode). This affects assertListEqual()
and assertTupleEqual().
|
2016-04-25 08:58:25 +03:00 |
Serhiy Storchaka
|
e437a10d15
|
Issue #23277: Remove unused imports in tests.
|
2016-04-24 21:41:02 +03:00 |
Berker Peksag
|
1e8ee9b380
|
Issue #23277: Remove unused sys and os imports
Patch by Jon Dufresne.
|
2016-04-24 07:31:42 +03:00 |
Victor Stinner
|
6e722bc13f
|
Merge 3.5 (test_unittest)
|
2016-03-30 01:15:48 +02:00 |
Victor Stinner
|
9db2ae7263
|
Fix ResourceWarning in test_unittest when interrupted
|
2016-03-30 01:15:28 +02:00 |
Berker Peksag
|
5a6c018b57
|
Issue #25195: Fix a regression in mock.MagicMock
_Call is a subclass of tuple (changeset 3603bae63c13 only works
for classes) so we need to implement __ne__ ourselves.
Patch by Andrew Plummer.
|
2016-03-28 00:30:40 +03:00 |
Berker Peksag
|
ce913877e4
|
Issue #25195: Fix a regression in mock.MagicMock
_Call is a subclass of tuple (changeset 3603bae63c13 only works
for classes) so we need to implement __ne__ ourselves.
Patch by Andrew Plummer.
|
2016-03-28 00:30:02 +03:00 |
Robert Collins
|
bfef0be420
|
#25320: Handle sockets in directories unittest discovery is scanning.
Patch from Victor van den Elzen.
|
2016-03-15 13:33:28 +13:00 |
Robert Collins
|
ecd5383891
|
#25320: Handle sockets in directories unittest discovery is scanning.
Patch from Victor van den Elzen.
|
2016-03-15 13:29:17 +13:00 |
Victor Stinner
|
2c2a4e63d7
|
Add Mock.assert_called()
Issue #26323: Add assert_called() and assert_called_once() methods to
unittest.mock.Mock.
|
2016-03-11 22:17:48 +01:00 |
Senthil Kumaran
|
81bc927da7
|
Issue #22138: Fix mock.patch behavior when patching descriptors. Restore
original values after patching.
Patch contributed by Sean McCully.
|
2016-01-08 23:43:29 -08:00 |
Martin Panter
|
d2ad5718ad
|
Issue #25523: Further a-to-an corrections new in 3.5
|
2015-11-02 04:20:33 +00:00 |
Berker Peksag
|
29bf4d403d
|
Issue #24857: Comparing call_args to a long sequence now correctly returns a
boolean result instead of raising an exception.
Patch by A Kaptur.
|
2015-09-09 23:39:45 +03:00 |
Berker Peksag
|
3fc536f1c9
|
Issue #24857: Comparing call_args to a long sequence now correctly returns a
boolean result instead of raising an exception.
Patch by A Kaptur.
|
2015-09-09 23:35:25 +03:00 |
Robert Collins
|
079fc7faff
|
Issue #21112: Fix regression in unittest.expectedFailure on subclasses.
Patch from Berker Peksag.
|
2015-08-28 10:35:14 +12:00 |
Robert Collins
|
ed599b7c84
|
Issue #21112: Fix regression in unittest.expectedFailure on subclasses.
Patch from Berker Peksag.
|
2015-08-28 10:34:51 +12:00 |
Robert Collins
|
be6caca534
|
Issue #20362: Honour TestCase.longMessage correctly in assertRegex.
Patch from Ilia Kurenkov.
|
2015-08-20 11:13:09 +12:00 |
Berker Peksag
|
86b34da5ef
|
Issue #23004: mock_open() now reads binary data correctly when the type of read_data is bytes.
Initial patch by Aaron Hill.
|
2015-08-06 13:15:51 +03:00 |
Robert Collins
|
ca647ef60a
|
Issue #21750: Further fixup to be styled like other mock APIs.
|
2015-07-24 03:48:20 +12:00 |
Robert Collins
|
5329aaa74b
|
Issue #21750: mock_open.read_data can now be read from each instance, as it
could in Python 3.3.
|
2015-07-17 20:08:45 +12:00 |
Robert Collins
|
b37f43f94b
|
- Issue #18622: unittest.mock.mock_open().reset_mock would recurse infinitely.
Patch from Nicola Palumbo and Laurent De Buyst.
|
2015-07-15 11:42:28 +12:00 |
Berker Peksag
|
abfaecdfdd
|
Issue #23004: mock_open() now reads binary data correctly when the type of read_data is bytes.
Initial patch by Aaron Hill.
|
2015-08-06 13:16:52 +03:00 |
Robert Collins
|
88ba360c88
|
Issue #21750: Further fixup to be styled like other mock APIs.
|
2015-07-24 03:48:45 +12:00 |
Robert Collins
|
4838717b53
|
Issue #21750: mock_open.read_data can now be read from each instance, as it
could in Python 3.3.
|
2015-07-17 20:10:23 +12:00 |
Robert Collins
|
76d508b5d4
|
- Issue #18622: unittest.mock.mock_open().reset_mock would recurse infinitely.
Patch from Nicola Palumbo and Laurent De Buyst.
|
2015-07-15 11:49:43 +12:00 |
Robert Collins
|
f58f88c4c7
|
Issue #23661: unittest.mock side_effects can now be exceptions again.
This was a regression vs Python 3.4. Patch from Ignacio Rossi
|
2015-07-14 13:51:40 +12:00 |
Serhiy Storchaka
|
041dd8eef1
|
Issue #15836: assertRaises(), assertRaisesRegex(), assertWarns() and
assertWarnsRegex() assertments now check the type of the first argument
to prevent possible user error. Based on patch by Daniel Wagner-Hall.
|
2015-05-21 20:15:40 +03:00 |
Serhiy Storchaka
|
e98209c2b4
|
Issue #24245: Eliminated senseless expect clauses that have no any effect.
Patch by Martin Panter.
|
2015-05-20 16:10:04 +03:00 |
Serhiy Storchaka
|
df573d6ad8
|
Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and
assertWarnsRegex() checks now emits a deprecation warning when callable is
None or keyword arguments except msg is passed in the context manager mode.
|
2015-05-16 16:29:50 +03:00 |
Serhiy Storchaka
|
24d3b7f9df
|
Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and
assertWarnsRegex() checks are not longer successful if the callable is None.
Added tests for assertRaises().
|
2015-05-06 19:14:47 +03:00 |
Serhiy Storchaka
|
e130503c7b
|
Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and
assertWarnsRegex() checks are not longer successful if the callable is None.
Added tests for assertRaises().
|
2015-05-06 19:13:11 +03:00 |
Łukasz Langa
|
a468db9b0b
|
Issue #23310: Fix MagicMock's initializer to work with __methods__.
Behavior equivalent to m.configure_mock(). Patch by Kasia Jachim.
|
2015-04-13 23:12:42 -07:00 |