Skip to content

Commit fd82726

Browse files
committed
Removing getViewInfo.Rd file.
1 parent 1c45d76 commit fd82726

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

NAMESPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ export(callouts.default)
1616
export(config)
1717
export(curve)
1818
export(error_bar)
19-
export(view_info)
2019
export(grid)
2120
export(gsplot)
2221
export(is.gsplot)
@@ -33,6 +32,7 @@ export(segments)
3332
export(symbols)
3433
export(text)
3534
export(title)
35+
export(view_info)
3636
export(xlim)
3737
export(ylim)
3838
exportMethods(gsplot)
File renamed without changes.

tests/testthat/tests-axis.R

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,11 @@ test_that("axis gsplot",{
1515
gs = points(gsplot(), c(-2,3), c(-1,5)) %>%
1616
axis(3)
1717
expect_equal(names(gs), c("view","par","axis"))
18+
19+
gs <- gsplot() %>%
20+
lines(1:5, c(1,10,100,1000,10000), log="y", axes=FALSE) %>%
21+
axis(side=c(2,4), labels=FALSE, n.minor=4)
22+
23+
expect_false(gs$view$window$axes)
24+
1825
})

0 commit comments

Comments
 (0)