Skip to content

Commit

Permalink
refactor!: remove tests for using function to tidyselect columns
Browse files Browse the repository at this point in the history
  • Loading branch information
machow committed Oct 7, 2022
1 parent 8cd6e65 commit 4cb9819
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions siuba/tests/test_dply_verbs.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,20 +107,6 @@ def test_VarList_getitem():
assert res[1].name == "c"



# Select ----------------------------------------------------------------------

from siuba.dply.verbs import select

def test_varlist_multi_slice(df1):
out = select(df1, lambda _: _["repo", "owner"])
assert out.columns.tolist() == ["repo", "owner"]

def test_varlist_multi_slice_negate(df1):
out = select(df1, lambda _: -_["repo", "owner"])
assert out.columns.tolist() == ["language", "stars", "x"]


# Distinct --------------------------------------------------------------------

from siuba.dply.verbs import distinct
Expand Down

0 comments on commit 4cb9819

Please sign in to comment.