-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
test_that("params_url_remonterletemps works", { | ||
url <- params_url_remonterletemps(lng=6.869433, lat=45.923690, zoom = 12) | ||
test_that("utils_url_remonterletemps works", { | ||
url <- utils_url_remonterletemps(lng=6.869433, lat=45.923690, zoom = 12) | ||
expect_true(inherits(url, "character"), | ||
"character url loaded") | ||
}) | ||
|
||
test_that("utile_normalize_string works", { | ||
test_that("utils_normalize_string works", { | ||
original_string <- "Thïs is à sâmplè strîng with spèciál chàracters!" | ||
normalized_string <- utile_normalize_string(original_string) | ||
normalized_string <- utils_normalize_string(original_string) | ||
expect_true(normalized_string == "thisisasamplestringwithspecialcharacters") | ||
}) |