No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
cabaa76
... +2 ...
71df468
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
360 | 360 | eval(fcall, parent.frame()) # nocov end |
|
361 | 361 | } |
|
362 | 362 | ||
363 | + | #' @rdname server |
|
364 | + | #' |
|
365 | + | #' @section ZeptoMail: |
|
366 | + | #' |
|
367 | + | #' SMTP Bucket is a fake SMTP server that captures all the messages it receives |
|
368 | + | #' and makes them available through a website or REST API. |
|
369 | + | #' |
|
370 | + | #' @export |
|
371 | + | #' |
|
372 | + | #' @examples |
|
373 | + | #' |
|
374 | + | #' # Set password for ZeptoMail SMTP server. |
|
375 | + | #' # nolint start |
|
376 | + | #' smtp <- zeptomail("yA6KbHsL4l2mw2tZRkdo3JmI8Ns0/fs9iSTj8yG0dYBgfIG0j6Fs1RU4doO5JDeMjYHV5fhQY4hPIdrsvo5Xe8JnMYNWfJTGTuv4P2uV32xh8ciEYNYlgJSvArQTFq5AcRkgCC7wRfkgWA==") |
|
377 | + | #' # nolint end |
|
378 | + | zeptomail <- function(password, |
|
379 | + | ...) { |
|
380 | + | fcall <- match.call(expand.dots = TRUE) # nocov start |
|
381 | + | ||
382 | + | fcall[[1]] <- server |
|
383 | + | fcall$host <- "smtp.zeptomail.eu" |
|
384 | + | # Available ports: 465 (SSL) and 587 (TLS). |
|
385 | + | fcall$port <- 587 |
|
386 | + | fcall$username <- "emailapikey" |
|
387 | + | ||
388 | + | eval(fcall, parent.frame()) # nocov end |
|
389 | + | } |
|
390 | + | ||
363 | 391 | #' @rdname server |
|
364 | 392 | #' |
|
365 | 393 | #' @section SMTP Bucket: |
Files | Coverage |
---|---|
R | 100.00% |
Project Totals (24 files) | 100.00% |
71df468
e549f63
b96cd9f
cabaa76