We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a23be1 commit ce631daCopy full SHA for ce631da
CHANGELOG.md
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
### Changed
11
12
- Updated test_cells to cover boundary cases of cell_len
13
+- Updated test_pick to cover untested inputs of pick_bool
14
15
## [13.3.1] - 2023-01-28
16
tests/test_pick.py
@@ -2,6 +2,9 @@
2
3
4
def test_pick_bool():
5
+ assert pick_bool(False) == False
6
+ assert pick_bool(True) == True
7
+ assert pick_bool(None) == False
8
assert pick_bool(False, True) == False
9
assert pick_bool(None, True) == True
assert pick_bool(True, None) == True
0 commit comments