Skip to content

Commit b5980f8

Browse files
authored
Merge pull request #2102 from zspitzer/enable-orm-tests-for-5.4-updates
enable orm tests for 5.4 updates
2 parents 6f73db5 + 896dda2 commit b5980f8

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

test/tickets/LDEV4067.cfc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
component extends="org.lucee.cfml.test.LuceeTestCase" labels="orm" skip=true{
1+
component extends="org.lucee.cfml.test.LuceeTestCase" labels="orm" {
22
function beforeAll() {
33
variables.uri = createURI("LDEV4067");
44
}
@@ -33,28 +33,28 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="orm" skip=true{
3333
);
3434
expect(trim(result.filecontent)).toBe("Michael");
3535
});
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 ) {
3737
local.result = _InternalRequest(
3838
template : "#uri#\LDEV4067.cfm",
3939
forms = {scene:5}
4040
);
4141
expect(trim(result.filecontent)).toBe("Michael");
4242
});
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 ) {
4444
local.result = _InternalRequest(
4545
template : "#uri#\LDEV4067.cfm",
4646
forms = {scene:6}
4747
);
4848
expect(trim(result.filecontent)).toBe("Michael");
4949
});
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 ) {
5151
local.result = _InternalRequest(
5252
template : "#uri#\LDEV4067.cfm",
5353
forms = {scene:7}
5454
);
5555
expect(trim(result.filecontent)).toBe("Michael");
5656
});
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 ) {
5858
local.result = _InternalRequest(
5959
template : "#uri#\LDEV4067.cfm",
6060
forms = {scene:8}

test/tickets/LDEV4185.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
component extends="org.lucee.cfml.test.LuceeTestCase" labels="ORM" skip="true" {
1+
component extends="org.lucee.cfml.test.LuceeTestCase" labels="ORM" {
22

33
function beforeAll() {
44
variables.uri = createURI("LDEV4185");

test/tickets/LDEV4285.cfc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
component extends="org.lucee.cfml.test.LuceeTestCase" labels="orm" skip="true" {
1+
component extends="org.lucee.cfml.test.LuceeTestCase" labels="orm" {
22
function beforeAll() {
33
variables.uri = createURI("LDEV4285");
44
}
@@ -46,14 +46,14 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="orm" skip="true" {
4646
);
4747
expect(result.filecontent.trim()).toBe(true);
4848
});
49-
it( title="entityLoad() with named arguments(name, idOrFilter)", body=function( currentSpec ) {
49+
it( title="entityLoad() with named arguments(name, idOrFilter)", skip="true", body=function( currentSpec ) {
5050
local.result = _InternalRequest(
5151
template : "#uri#\test.cfm",
5252
forms : { Scene = 7 }
5353
);
5454
expect(result.filecontent.trim()).toBe(true);
5555
});
56-
it( title="entityLoad() with named arguments(name, options)", body=function( currentSpec ) {
56+
it( title="entityLoad() with named arguments(name, options)", skip="true", body=function( currentSpec ) {
5757
local.result = _InternalRequest(
5858
template : "#uri#\test.cfm",
5959
forms : { Scene = 8 }
@@ -67,7 +67,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="orm" skip="true" {
6767
);
6868
expect(result.filecontent.trim()).toBe(true);
6969
});
70-
it( title="entityLoad() with named arguments(name, idOrFilter, uniqueOrOrder)", body=function( currentSpec ) {
70+
it( title="entityLoad() with named arguments(name, idOrFilter, uniqueOrOrder)", skip=true, body=function( currentSpec ) {
7171
local.result = _InternalRequest(
7272
template : "#uri#\test.cfm",
7373
forms : { Scene = 10 }

0 commit comments

Comments
 (0)