Skip to content

Commit

Permalink
Add extra conditions to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRoniOne committed Aug 13, 2023
1 parent 5fe6222 commit 0f27119
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/test_polish_names.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ using DataFrames: DataFrame
:aNameWithLoTsOfProblems,
:aNameWithLoTsOfProblems1,
:aNameWithLoTsOfProblems2,
:aNameABCWithLoTsOfProblemsDEF,
:aNameAbcWithLoTsOfProblemsDef,
])

@test polish_names(testDF) isa CleanTable
Expand All @@ -45,10 +45,14 @@ using DataFrames: DataFrame
" _aName with_loTsOfProblems",
" _aName with_loTsOfProblems",
" _aName with_loTsOfProblems_1",
" _aNameABC with_loTsOfProblemsDEF",
];
style=:camelCase,
) == Vector{Symbol}([
:aNameWithLoTsOfProblems, :aNameWithLoTsOfProblems_1, :aNameWithLoTsOfProblems1
:aNameWithLoTsOfProblems,
:aNameWithLoTsOfProblems_1,
:aNameWithLoTsOfProblems1,
:aNameABCWithLoTsOfProblemsDEF,
])

let err = nothing
Expand Down

0 comments on commit 0f27119

Please sign in to comment.