gnucash/bindings/guile/test/test-load-app-utils-module.scm
John Ralls f4c27d4494 Move gnc_ui_account_get_tax_info_string to gnc-locale-tax.c
To prevent a circular dependency between libgnc-app-utils and
libgnucash-guile.
2022-07-17 10:00:23 -07:00

21 lines
566 B
Scheme
Executable File

(define exit-code 0)
(setenv "GNC_UNINSTALLED" "1")
(use-modules (gnucash app-utils))
(cond
((defined? 'gnc:apply-with-error-handling)
(display "Procedure gnc:apply-with-error-handling found\n"))
(else
(display "Failed - procedure gnc:apply-with-error-handling not found\n")
(set! exit-code -1)))
(cond
((defined? 'gnc-default-currency)
(display "Procedure gnc-default-currency found\n"))
(else
(display "Failed - procedure gnc-default-currency not found\n")
(set! exit-code -1)))
(exit exit-code)