Skip to content

Commit

Permalink
tests placeholder (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
leeper committed Mar 27, 2016
1 parent 70b2705 commit 00d3ac5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Package: aws.ec2
Type: Package
Title: AWS EC2 Client Package
Version: 0.1.6
Date: 2016-03-15
Date: 2016-03-27
Author: Thomas J. Leeper
Maintainer: Thomas J. Leeper <thosjleeper@gmail.com>
Description: A simple client package for the Amazon Web Services AWS Elastic
Expand Down
7 changes: 7 additions & 0 deletions tests/test-all.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
library("testthat")
k1 <- Sys.getenv("AWS_ACCESS_KEY_ID")
k2 <- Sys.getenv("AWS_SECRET_ACCESS_KEY")
if ((k1 != "") && (k2 != "")) {
library("aws.ec2")
test_check("aws.ec2")
}
5 changes: 5 additions & 0 deletions tests/testthat/tests.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
context("Something")

test_that("Something", {
expect_true(TRUE)
})

0 comments on commit 00d3ac5

Please sign in to comment.