Skip to content

Commit 09af347

Browse files
committed
foofun -> foo
1 parent b173e1b commit 09af347

File tree

2 files changed

+44
-44
lines changed

2 files changed

+44
-44
lines changed

tests/testthat/_snaps/rd-family.md

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -3,83 +3,83 @@
33
Code
44
out
55
Output
6-
$foofun1.Rd
6+
$foo1.Rd
77
% Generated by roxygen2: do not edit by hand
88
% Please edit documentation in ./<text>
9-
\name{foofun1}
10-
\alias{foofun1}
11-
\title{foofun1}
9+
\name{foo1}
10+
\alias{foo1}
11+
\title{foo1}
1212
\usage{
13-
foofun1()
13+
foo1()
1414
}
1515
\description{
16-
foofun1
16+
foo1
1717
}
1818
\seealso{
1919
Other a:
20-
\code{\link{Foofun3}()},
21-
\code{\link{foofun}()},
22-
\code{\link{foofun2}()}
20+
\code{\link{Foo3}()},
21+
\code{\link{foo}()},
22+
\code{\link{foo2}()}
2323
}
2424
\concept{a}
2525
26-
$foofun2.Rd
26+
$foo2.Rd
2727
% Generated by roxygen2: do not edit by hand
2828
% Please edit documentation in ./<text>
29-
\name{foofun2}
30-
\alias{foofun2}
31-
\title{foofun2}
29+
\name{foo2}
30+
\alias{foo2}
31+
\title{foo2}
3232
\usage{
33-
foofun2()
33+
foo2()
3434
}
3535
\description{
36-
foofun2
36+
foo2
3737
}
3838
\seealso{
3939
Other a:
40-
\code{\link{Foofun3}()},
41-
\code{\link{foofun}()},
42-
\code{\link{foofun1}()}
40+
\code{\link{Foo3}()},
41+
\code{\link{foo}()},
42+
\code{\link{foo1}()}
4343
}
4444
\concept{a}
4545
46-
$Foofun3.Rd
46+
$Foo3.Rd
4747
% Generated by roxygen2: do not edit by hand
4848
% Please edit documentation in ./<text>
49-
\name{Foofun3}
50-
\alias{Foofun3}
51-
\title{Foofun3}
49+
\name{Foo3}
50+
\alias{Foo3}
51+
\title{Foo3}
5252
\usage{
53-
Foofun3()
53+
Foo3()
5454
}
5555
\description{
56-
Foofun3
56+
Foo3
5757
}
5858
\seealso{
5959
Other a:
60-
\code{\link{foofun}()},
61-
\code{\link{foofun1}()},
62-
\code{\link{foofun2}()}
60+
\code{\link{foo}()},
61+
\code{\link{foo1}()},
62+
\code{\link{foo2}()}
6363
}
6464
\concept{a}
6565
66-
$foofun.Rd
66+
$foo.Rd
6767
% Generated by roxygen2: do not edit by hand
6868
% Please edit documentation in ./<text>
69-
\name{foofun}
70-
\alias{foofun}
71-
\title{foofun}
69+
\name{foo}
70+
\alias{foo}
71+
\title{foo}
7272
\usage{
73-
foofun()
73+
foo()
7474
}
7575
\description{
76-
foofun
76+
foo
7777
}
7878
\seealso{
7979
Other a:
80-
\code{\link{Foofun3}()},
81-
\code{\link{foofun1}()},
82-
\code{\link{foofun2}()}
80+
\code{\link{Foo3}()},
81+
\code{\link{foo1}()},
82+
\code{\link{foo2}()}
8383
}
8484
\concept{a}
8585

tests/testthat/test-rd-family.R

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -128,21 +128,21 @@ test_that("careful ordering", {
128128
# Can't use foo1 because it's used as class in another test
129129

130130
out <- roc_proc_text(rd_roclet(), "
131-
#' foofun1
131+
#' foo1
132132
#' @family a
133-
foofun1 <- function() {}
133+
foo1 <- function() {}
134134
135-
#' foofun2
135+
#' foo2
136136
#' @family a
137-
foofun2 <- function() {}
137+
foo2 <- function() {}
138138
139-
#' Foofun3
139+
#' Foo3
140140
#' @family a
141-
Foofun3 <- function() {}
141+
Foo3 <- function() {}
142142
143-
#' foofun
143+
#' foo
144144
#' @family a
145-
foofun <- function() {}
145+
foo <- function() {}
146146
")
147147

148148
expect_snapshot({

0 commit comments

Comments
 (0)