diff --git a/test/tickets/LDEV4668.cfc b/test/tickets/LDEV4668.cfc new file mode 100644 index 0000000000..40cda29551 --- /dev/null +++ b/test/tickets/LDEV4668.cfc @@ -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"); + }); + }); + } +}