Skip to content

Commit

Permalink
making sure they are lucee only tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Oct 24, 2024
1 parent 68c4449 commit 00b5095
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tests/specs/cache/lucee/LuceeUniqueTests.cfc
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
component extends="coldbox.system.testing.BaseModelTest" skip="isLucee" {
component extends="coldbox.system.testing.BaseModelTest" skip="notLucee" {

boolean function isLucee(){
return listFindNoCase( "Lucee", server.coldfusion.productname ) ? false : true;
boolean function notLucee(){
if( isBoxLang() || isAdobe() ){
return true;
}
return false;
}

function setup(){
Expand Down

0 comments on commit 00b5095

Please sign in to comment.