Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Commit

Permalink
keep the tests for generic
Browse files Browse the repository at this point in the history
  • Loading branch information
jkanche committed Oct 31, 2023
1 parent a72bf99 commit e0b60ca
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_show_as_cell.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from biocgenerics import show_as_cell


def test_show_as_cell():
assert show_as_cell([1, 2, 3, 4], range(4)) == ["1", "2", "3", "4"]
assert show_as_cell([1, 2, 3, 4], [1, 3]) == ["2", "4"]

0 comments on commit e0b60ca

Please sign in to comment.