Skip to content

Commit

Permalink
Added a testcase for LDEV-4668 (#2212)
Browse files Browse the repository at this point in the history
* Added a testcase for LDEV-4668

* Update LDEV4668.cfc
  • Loading branch information
cfmitrah authored Sep 8, 2023
1 parent 442977d commit 7b11bb2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test/tickets/LDEV4668.cfc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
component extends="org.lucee.cfml.test.LuceeTestCase" skip=true {
function run( testResults , testBox ) {
describe( title = "Testcase for LDEV-4668", body = function() {
it( title = "Checking forwardslash/backslash for LDEV-4668", body = function( currentSpec ) {
expect(18010737 / 1).toBe("18010737");
expect(18010737 \ 1).toBe("18010737");
expect(floor(18010737 / 1)).toBe("18010737");
expect(floor(18010737 \ 1)).toBe("18010737");
});
});
}
}

0 comments on commit 7b11bb2

Please sign in to comment.