-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathDESCRIPTION
90 lines (90 loc) · 2.59 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
Package: dittodb
Title: A Test Environment for Database Requests
Version: 0.1.8
Authors@R: c(
person(given = "Jonathan",
family = "Keane",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0001-7087-9776")),
person(given = "Mauricio",
family = "Vargas",
role = "aut",
email = "[email protected]",
comment = c(ORCID = "0000-0003-1017-7574")),
person(given = "Helen",
family = "Miller",
role = "rev",
comment = "reviewed the package for rOpenSci, see https://github.com/ropensci/software-review/issues/366"),
person(given = "Etienne",
family = "Racine",
role = "rev",
comment = "reviewed the package for rOpenSci, see https://github.com/ropensci/software-review/issues/366")
)
URL: https://dittodb.jonkeane.com/, https://github.com/ropensci/dittodb
BugReports: https://github.com/ropensci/dittodb/issues
Description: Testing and documenting code that communicates with remote
databases can be painful. Although the interaction with R is usually relatively
simple (e.g. data(frames) passed to and from a database), because they rely on
a separate service and the data there, testing them can be difficult to set up,
unsustainable in a continuous integration environment, or impossible without
replicating an entire production cluster. This package addresses that by
allowing you to make recordings from your database interactions and then play
them back while testing (or in other contexts) all without needing to spin up
or have access to the database your code would typically connect to.
License: Apache License (>= 2.0)
Encoding: UTF-8
Depends:
R (>= 3.3.0),
DBI
Imports:
digest,
glue,
methods,
rlang,
utils,
lifecycle
Suggests:
bit64,
callr,
covr,
dplyr,
dbplyr,
knitr,
nycflights13,
odbc,
RMariaDB,
RPostgres,
RPostgreSQL,
RSQLite,
spelling,
testthat,
withr,
rmarkdown
RoxygenNote: 7.3.1
Roxygen: list(markdown = TRUE)
Language: en-US
VignetteBuilder: knitr
Config/testthat/edition: 3
Collate:
'capture-requests.R'
'connection.R'
'dbExistsTable.R'
'dbListTables-Fields.R'
'driver-specific-connections.R'
'dbQueries-Results.R'
'dbMisc.R'
'mock-paths.R'
'dittodb-env.R'
'expect-sql.R'
'mock-db.R'
'nycflights13-sql.R'
'paths.R'
'quote.R'
'redact.R'
'serialize-bit64.R'
'transactions.R'
'use-dittodb.R'
'utils.R'
'vctrs_s3_register.R'
RdMacros: lifecycle