Global faux options are used, for example, to set the default separator for cell names.
Examples
faux_options() # see all options
#> $connection
#> A connection with
#> description "stdin"
#> class "terminal"
#> mode "r"
#> text "text"
#> opened "opened"
#> can read "yes"
#> can write "no"
#>
#> $long
#> [1] FALSE
#>
#> $plot
#> [1] TRUE
#>
#> $sep
#> [1] "_"
#>
#> $verbose
#> [1] TRUE
#>
faux_options("sep") # see value of faux.sep
#> [1] "_"
# \donttest{
# changes cell separator (e.g., A1.B2)
faux_options(sep = ".")
# changes cell separator back to default (e.g., A1_B2)
faux_options(sep = "_")
# }