forked from r-lib/testthat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
DESCRIPTION
111 lines (111 loc) · 2.48 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
Package: testthat
Title: Unit Testing for R
Version: 2.2.1.9000
Authors@R: c(
person("Hadley", "Wickham", , "[email protected]", c("aut", "cre")),
person("RStudio", role = c("cph", "fnd")),
person("R Core team", role = "ctb",
comment = "Implementation of utils::recover()")
)
Description: Software testing is important, but, in part because it is
frustrating and boring, many of us avoid it. 'testthat' is a testing framework
for R that is easy to learn and use, and integrates with your existing 'workflow'.
License: MIT + file LICENSE
URL: http://testthat.r-lib.org, https://github.com/r-lib/testthat
BugReports: https://github.com/r-lib/testthat/issues
Depends:
R (>= 3.1)
Imports:
cli,
crayon (>= 1.3.4),
digest,
evaluate,
magrittr,
methods,
pkgload,
praise,
R6 (>= 2.2.0),
rlang (>= 0.4.0.9001),
withr (>= 2.0.0)
Suggests:
covr,
curl (>= 0.9.5),
devtools,
knitr,
rmarkdown,
usethis,
vctrs (>= 0.1.0),
xml2
Remotes:
r-lib/rlang
VignetteBuilder: knitr
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 6.1.1
Collate:
'auto-test.R'
'capture-condition.R'
'capture-output.R'
'colour-text.R'
'compare.R'
'compare-character.R'
'compare-numeric.R'
'compare-time.R'
'context.R'
'describe.R'
'evaluate-promise.R'
'example.R'
'expect-comparison.R'
'expect-equality.R'
'expect-inheritance.R'
'expect-invisible.R'
'expect-known.R'
'expect-length.R'
'expect-logical.R'
'expect-named.R'
'expect-null.R'
'expect-output.R'
'reporter.R'
'expect-self-test.R'
'expect-setequal.R'
'expect-that.R'
'expect-vector.R'
'expectation.R'
'expectations-matches.R'
'make-expectation.R'
'mock.R'
'old-school.R'
'praise.R'
'quasi-label.R'
'recover.R'
'reporter-check.R'
'reporter-debug.R'
'reporter-fail.R'
'reporter-junit.R'
'reporter-list.R'
'reporter-location.R'
'reporter-minimal.R'
'reporter-multi.R'
'stack.R'
'reporter-progress.R'
'reporter-rstudio.R'
'reporter-silent.R'
'reporter-stop.R'
'reporter-summary.R'
'reporter-tap.R'
'reporter-teamcity.R'
'reporter-zzz.R'
'skip.R'
'source.R'
'teardown.R'
'test-compiled-code.R'
'test-directory.R'
'test-example.R'
'test-files.R'
'test-path.R'
'test-that.R'
'try-again.R'
'utils-io.R'
'utils.R'
'verify-output.R'
'watcher.R'