swh:1:snp:bdc19e867479541d0f4994ceaa711217d0dc28ed
Tip revision: 1ad2332a4119217014f512bdf05025fa6f2bb72f authored by Hadley Wickham on 09 April 2020, 13:00:02 UTC
version 1.5.1
version 1.5.1
Tip revision: 1ad2332
test-topics-warnings.txt
> t <- select_topics("x + ", topics)
Warning: In '_pkgdown.yml', topic must be valid R code
x Not 'x + '
> t <- select_topics("y", topics)
Warning: In '_pkgdown.yml', topic must be a known topic name or alias
x Not 'y'
> t <- select_topics("paste(1)", topics)
Warning: In '_pkgdown.yml', topic must be a known selector function
x Not 'paste(1)'
> t <- select_topics("starts_with", topics)
Warning: In '_pkgdown.yml', topic must be a known topic name or alias
x Not 'starts_with'
> t <- select_topics("1", topics)
Warning: In '_pkgdown.yml', topic must be a string or function call
x Not '1'
> t <- select_topics("starts_with('y')", topics, check = TRUE)
Warning: No topics matched in '_pkgdown.yml'. No topics selected.