Nothing
context("git")
test_that('use_git_config(scope = "project) errors if project not using git', {
scoped_temporary_package()
expect_usethis_error(
use_git_config(scope = "project", user.name = "USER.NAME"),
"Cannot detect that project is already a Git repository"
)
})
test_that("use_git_config() can set local config", {
skip_if_no_git_config()
scoped_temporary_package()
use_git()
use_git_config(
scope = "project",
user.name = "Jane",
user.email = "[email protected]"
)
r <- git2r::repository(proj_get())
cfg <- git2r::config(repo = r, global = FALSE)
expect_identical(cfg$local$user.name, "Jane")
expect_identical(cfg$local$user.email, "[email protected]")
})
test_that("use_git_hook errors if project not using git", {
scoped_temporary_package()
expect_usethis_error(
use_git_hook(
"pre-commit",
render_template("readme-rmd-pre-commit.sh")
),
"Cannot detect that project is already a Git repository"
)
})
test_that("git remote handlers work", {
skip_if_no_git_config()
scoped_temporary_package()
use_git()
expect_null(git_remotes())
use_git_remote(name = "foo", url = "foo_url")
expect_identical(git_remotes(), list(foo = "foo_url"))
use_git_remote(name = "foo", url = "new_url", overwrite = TRUE)
expect_identical(git_remotes(), list(foo = "new_url"))
use_git_remote(name = "foo", url = NULL, overwrite = TRUE)
expect_null(git_remotes())
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.