Skip to content

Commit 6dd933f

Browse files
committed
added test for image creation for gists fix #33
1 parent c362857 commit 6dd933f

12 files changed

+55
-5
lines changed

R/gist_create.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
#' ## but check back later as I'm working on an option to get binary files uploaded,
9191
#' ## but will involve having to use git
9292
#' file <- system.file("examples", "plots.Rmd", package = "gistr")
93-
#' gist_create(file, knit=TRUE, imgur_inject = TRUE, artifacts = TRUE)
93+
#' gist_create(file, knit=TRUE, imgur_inject = TRUE)
9494
#'
9595
#' # Render `.R` files
9696
#' file <- system.file("examples", "example1.R", package = "gistr")

figure/unnamed-chunk-2-1.png

15.9 KB
Loading

figure/unnamed-chunk-3-1.png

13.8 KB
Loading

figure/unnamed-chunk-4-1.png

17.4 KB
Loading

inst/examples/plots.Rmd

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
```{r echo=FALSE}
2+
knitr::opts_knit$set(upload.fun = imgur_upload, base.url = NULL)
3+
```
4+
15
## Scatter plot
26

37
```{r}

inst/examples/plots.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
3+
## Scatter plot
4+
5+
6+
```r
7+
plot(mpg ~ cyl, data=mtcars)
8+
```
9+
10+
![plot of chunk unnamed-chunk-2](http://i.imgur.com/07jtYvL.png)
11+
12+
## Bar plot
13+
14+
15+
```r
16+
barplot(VADeaths)
17+
```
18+
19+
![plot of chunk unnamed-chunk-3](http://i.imgur.com/tpuEz9k.png)
20+
21+
## Histogram
22+
23+
24+
```r
25+
hist(iris$Petal.Length)
26+
```
27+
28+
![plot of chunk unnamed-chunk-4](http://i.imgur.com/IghDLyE.png)

inst/examples/plots_imgur.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
plot(mpg ~ cyl, data=mtcars)
88
```
99

10-
![plot of chunk unnamed-chunk-2](http://i.imgur.com/GQWpLGK.png)
10+
![plot of chunk unnamed-chunk-2](http://i.imgur.com/c7Tq4mH.png)
1111

1212
## Bar plot
1313

@@ -16,7 +16,7 @@ plot(mpg ~ cyl, data=mtcars)
1616
barplot(VADeaths)
1717
```
1818

19-
![plot of chunk unnamed-chunk-3](http://i.imgur.com/ZapLSCS.png)
19+
![plot of chunk unnamed-chunk-3](http://i.imgur.com/zULHBZ4.png)
2020

2121
## Histogram
2222

@@ -25,4 +25,4 @@ barplot(VADeaths)
2525
hist(iris$Petal.Length)
2626
```
2727

28-
![plot of chunk unnamed-chunk-4](http://i.imgur.com/8yr7wEm.png)
28+
![plot of chunk unnamed-chunk-4](http://i.imgur.com/4iU5qKL.png)

man/gist_create.Rd

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ gist_create(file, knit=TRUE)
113113
## but check back later as I'm working on an option to get binary files uploaded,
114114
## but will involve having to use git
115115
file <- system.file("examples", "plots.Rmd", package = "gistr")
116-
gist_create(file, knit=TRUE, imgur_inject = TRUE, artifacts = TRUE)
116+
gist_create(file, knit=TRUE, imgur_inject = TRUE)
117117

118118
# Render `.R` files
119119
file <- system.file("examples", "example1.R", package = "gistr")
15.9 KB
Loading
13.8 KB
Loading
17.4 KB
Loading

tests/testthat/test-gist_create.R

+18
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,21 @@ test_that("gist_create works from a code block", {
2626
# cleanup
2727
suppressMessages(h %>% delete())
2828
})
29+
30+
test_that("gist_create works to upload images", {
31+
## using imgur - if you're file uses imgur or similar, you're good
32+
file <- system.file("examples", "plots_imgur.Rmd", package = "gistr")
33+
res1 <- gist_create(file, knit=TRUE, browse = FALSE)
34+
35+
## inject imgur
36+
file <- system.file("examples", "plots.Rmd", package = "gistr")
37+
res2 <- gist_create(file, knit=TRUE, browse = FALSE, imgur_inject = TRUE)
38+
39+
expect_is(res1, "gist")
40+
expect_equal(names(res1$files), "plots_imgur.md")
41+
expect_true(res1$public)
42+
43+
# cleanup
44+
suppressMessages(res1 %>% delete())
45+
suppressMessages(res2 %>% delete())
46+
})

0 commit comments

Comments
 (0)