From 6aa2a04a46ec4db7373f4192e8b442fd4a2155be Mon Sep 17 00:00:00 2001 From: TheCedarPrince Date: Thu, 11 Aug 2022 00:47:30 -0400 Subject: [PATCH] Uncommented test sets for running and added todo for Generators --- test/runtests.jl | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 8edfc84..9c384cc 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -27,16 +27,19 @@ GenerateTables(sqlite_conn) @testset "SQLite Getter Functions" begin include("sqlite/getters.jl") end - # @testset "SQLite Filter Functions" begin - # include("sqlite/filters.jl") - # end + @testset "SQLite Filter Functions" begin + include("sqlite/filters.jl") + end + #= TODO: Add Generator function testset + This set of tests needs a bit more scrutiny as there are some functions that need to be reviewed and most likely deprecated. + labels: tests, moderate + assignees: thecedarprince + =# # @testset "SQLite Generator Functions" begin # include("sqlite/generators.jl") # end - # @testset "SQLite Executors Functions" begin - # include("sqlite/generators.jl") - # end + @testset "SQLite Executors Functions" begin + include("sqlite/executors.jl") + end end - -