-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/k5cents/fflr
# Conflicts: # README.Rmd # tests/testthat/test-live.R # tests/testthat/test-outlook.R
- Loading branch information
Showing
17 changed files
with
693 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
Package: fflr | ||
Title: Retrieve ESPN Fantasy Football Data | ||
Version: 2.2.0.9002 | ||
Version: 2.2.4 | ||
Authors@R: | ||
person("Kiernan", "Nicholls", , "[email protected]", role = c("aut", "cre", "cph")) | ||
person("Kiernan", "Nicholls", email = "[email protected]", role = c("aut", "cre", "cph"), | ||
comment = c(ORCID = "0000-0002-9229-7897")) | ||
Description: Format the raw data from the ESPN fantasy football API | ||
<https://lm-api-reads.fantasy.espn.com/apis/v3/games/ffl> as data frames. | ||
Retrieve data on public leagues, rosters, athletes, and matches. | ||
License: MIT + file LICENSE | ||
License: GPL (>= 3) | ||
URL: https://k5cents.github.io/fflr/, https://github.com/k5cents/fflr | ||
BugReports: https://github.com/k5cents/fflr/issues | ||
Depends: | ||
R (>= 2.10) | ||
Imports: | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
test_that("live scoring returns 1 row per team", { | ||
<<<<<<< HEAD | ||
l <- live_scoring(leagueId = "42654852", yetToPlay = TRUE, bonusWin = TRUE) | ||
skip_empty(l) | ||
======= | ||
l <- live_scoring(leagueId = "42654852", yetToPlay = FALSE, bonusWin = TRUE) | ||
>>>>>>> 51d8f8313cb57960ba168ad9b476f2d226482453 | ||
expect_s3_class(l, "data.frame") | ||
expect_true("toPlay" %in% names(l)) | ||
expect_length(l, 8) | ||
# expect_true("toPlay" %in% names(l)) | ||
expect_length(l, 7) | ||
expect_equal(nrow(l), 4) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters