Skip to content

Commit

Permalink
add additional test case
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Jul 15, 2024
1 parent ae7cc3c commit 6462785
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tests/Base.cfc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
component extends="org.lucee.cfml.test.LuceeTestCase" labels="redis" {


function run( testResults , testBox ) {
describe( "Simple Tests", function() {

it( title='simply load RedisCommand class', body=function( currentSpec ) {
var RedisCommand=createObject("java","lucee.extension.io.cache.redis.udf.RedisCommand").init();
});


});
}
}

0 comments on commit 6462785

Please sign in to comment.