We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06156e9 commit 3db5359Copy full SHA for 3db5359
1 file changed
tests/specs/cache/lucee/LuceeUniqueTest.cfc
@@ -1,4 +1,5 @@
1
-component extends="coldbox.system.testing.BaseModelTest" skip="notLucee" {
+// TestBox ISSUE: skip is not working properly
2
+component extends="coldbox.system.testing.BaseModelTest"{
3
4
boolean function notLucee(){
5
if ( isBoxLang() || isAdobe() ) {
@@ -8,6 +9,9 @@
8
9
}
10
11
function setup(){
12
+ if( notLucee() ){
13
+ return;
14
+ }
15
// Mocks
16
mockFactory = createMock( "coldbox.system.cache.CacheFactory" );
17
mockEventManager = createMock( "coldbox.system.core.events.EventPoolManager" );
@@ -40,10 +44,16 @@
40
44
41
45
42
46
function teardown(){
47
48
49
43
50
cache.clearAll();
51
52
53
function testTimeouts(){
54
55
+ skip( "Lucee only test" );
56
57
testVal = { name : "luis", age : 32 };
58
59
0 commit comments