Skip to content

Commit

Permalink
Added a testcase for LDEV-4668
Browse files Browse the repository at this point in the history
  • Loading branch information
cfmitrah committed Aug 17, 2023
1 parent c856548 commit 6f28a80
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" {
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 6f28a80

Please sign in to comment.