From 0f27119d0c56dd4539ff76b579052fe0e1059fa4 Mon Sep 17 00:00:00 2001 From: TheRoniOne Date: Sat, 12 Aug 2023 23:47:11 -0500 Subject: [PATCH] Add extra conditions to tests --- test/test_polish_names.jl | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test/test_polish_names.jl b/test/test_polish_names.jl index 21e2da6..f9be5ae 100644 --- a/test/test_polish_names.jl +++ b/test/test_polish_names.jl @@ -22,7 +22,7 @@ using DataFrames: DataFrame :aNameWithLoTsOfProblems, :aNameWithLoTsOfProblems1, :aNameWithLoTsOfProblems2, - :aNameABCWithLoTsOfProblemsDEF, + :aNameAbcWithLoTsOfProblemsDef, ]) @test polish_names(testDF) isa CleanTable @@ -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