Skip to content

Commit 68eee4c

Browse files
committed
one more test and small tweaks
1 parent 4291b68 commit 68eee4c

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

.Rbuildignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ src/lapack
1010
^.editorconfig
1111
^\.github
1212
^\.codecov.yml
13+
^\.covrignore

.covrignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
inst/include/armadillo_bits/*

inst/tinytest/test_fastLm.R

+2
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,5 @@ expect_stdout(print(summary(flm)))
8585
vec <- predict(flm, newdata=data.frame(Girth=c(1,2,3), Volume=c(2,3,4)))
8686
expect_equal(class(vec), "numeric")
8787
expect_equal(length(vec), 3L)
88+
vec <- predict(flm, newdata=NULL)
89+
expect_equal(vec, fitted(flm))

0 commit comments

Comments
 (0)