Skip to contents

This function reads an R function from a file and generates a test file with documentation.

Usage

write_test(file, ...)

Arguments

file

The file path of the R function.

...

Additional arguments to pass to the chat_completion() function.

Value

If the input is a character string, the function returns the generated output without creating a test file. Otherwise, it creates a test file and returns the file name.

Examples

if (FALSE) {
# Write test for an R function
write_test("path/to/file.R")
}