Skip to content
This repository has been archived by the owner on May 2, 2022. It is now read-only.

Commit

Permalink
update TestNextKeyComposer, making coverage 100%
Browse files Browse the repository at this point in the history
  • Loading branch information
TaiSakuma committed Aug 29, 2017
1 parent 1d3f635 commit 8d94ad6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/unit/summary/test_NextKeyComposer.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ def next(self, val):
##__________________________________________________________________||
class TestNextKeyComposer(unittest.TestCase):

def test_repr(self):
binnings = (MockBinningPlusOneNext(), MockBinningPlusOneNext(), MockBinningPlusOneNext())
keyComposer = summary.NextKeyComposer(binnings)
repr(keyComposer)

def test_call(self):
binnings = (MockBinningPlusOneNext(), MockBinningPlusOneNext(), MockBinningPlusOneNext())
keyComposer = summary.NextKeyComposer(binnings)
Expand Down

0 comments on commit 8d94ad6

Please sign in to comment.