blob: b30a3a13b8b08bde79b9d96c0a7e986658044545 [file] [log] [blame]
## check that all S3 methods in base are registered.
## See the end of src/library/base/R/zzz.R ...
(function() {
old <- Sys.getlocale("LC_COLLATE")
on.exit(Sys.setlocale("LC_COLLATE", old))
Sys.setlocale("LC_COLLATE", "C")
stopifnot(identical(base:::.S3_methods_table,
tools:::.make_S3_methods_table_for_base()))
})()