|
1 | | -component extends="org.lucee.cfml.test.LuceeTestCase" labels="orm" skip=true{ |
| 1 | +component extends="org.lucee.cfml.test.LuceeTestCase" labels="orm" { |
2 | 2 | function beforeAll() { |
3 | 3 | variables.uri = createURI("LDEV4067"); |
4 | 4 | } |
@@ -33,28 +33,28 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="orm" skip=true{ |
33 | 33 | ); |
34 | 34 | expect(trim(result.filecontent)).toBe("Michael"); |
35 | 35 | }); |
36 | | - it( title="checking this scope calling from closure with ORM entity", body=function( currentSpec ) { |
| 36 | + it( title="checking this scope calling from closure with ORM entity", skip="true", body=function( currentSpec ) { |
37 | 37 | local.result = _InternalRequest( |
38 | 38 | template : "#uri#\LDEV4067.cfm", |
39 | 39 | forms = {scene:5} |
40 | 40 | ); |
41 | 41 | expect(trim(result.filecontent)).toBe("Michael"); |
42 | 42 | }); |
43 | | - it( title="checking variables scope calling from closure with ORM entity", body=function( currentSpec ) { |
| 43 | + it( title="checking variables scope calling from closure with ORM entity", skip="true", body=function( currentSpec ) { |
44 | 44 | local.result = _InternalRequest( |
45 | 45 | template : "#uri#\LDEV4067.cfm", |
46 | 46 | forms = {scene:6} |
47 | 47 | ); |
48 | 48 | expect(trim(result.filecontent)).toBe("Michael"); |
49 | 49 | }); |
50 | | - it( title="checking this scope calling from lambda with ORM entity", body=function( currentSpec ) { |
| 50 | + it( title="checking this scope calling from lambda with ORM entity", skip="true", body=function( currentSpec ) { |
51 | 51 | local.result = _InternalRequest( |
52 | 52 | template : "#uri#\LDEV4067.cfm", |
53 | 53 | forms = {scene:7} |
54 | 54 | ); |
55 | 55 | expect(trim(result.filecontent)).toBe("Michael"); |
56 | 56 | }); |
57 | | - it( title="checking variables scope calling from lambda with ORM entity", body=function( currentSpec ) { |
| 57 | + it( title="checking variables scope calling from lambda with ORM entity", skip=true, body=function( currentSpec ) { |
58 | 58 | local.result = _InternalRequest( |
59 | 59 | template : "#uri#\LDEV4067.cfm", |
60 | 60 | forms = {scene:8} |
|
0 commit comments