mangle_keep_fnames_false: { options = { keep_fargs: true, keep_fnames: true, } mangle = { keep_fnames : false, } input: { "use strict"; function total() { return function n(a, b, c) { return a + b + c; }; } } expect: { "use strict"; function total() { return function t(n, r, u) { return n + r + u; }; } } } mangle_keep_fnames_true: { options = { keep_fargs: true, keep_fnames: true, } mangle = { keep_fnames : true, } input: { "use strict"; function total() { return function n(a, b, c) { return a + b + c; }; } } expect: { "use strict"; function total() { return function n(t, r, u) { return t + r + u; }; } } } ht'>
aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests/mail.scm
AgeCommit message (Expand)Author
2019-06-19tests: Fix opensmtpd test....Tobias Geerinckx-Rice
2019-05-31services: Add getmail....Christopher Baines
2018-10-18services: dhcp-client: Deprecate 'dhcp-client-service' procedure....Ludovic Courtès
2018-06-13tests: Honor the return value of 'start-service'....Clément Lassieur
2018-03-09tests: mail: Add test for dovecot....Oleg Pykhalov
2017-07-20tests: Use 'virtual-machine' records instead of monadic procedures....Ludovic Courtès