library(gyokaikyor)
context("Make shtname of prefecture")
test_that("make_shtname() makes sheetname for kumamoto data", {
expect_equal(make_shtname(prefec = "kumamoto", spcs = "katakuchi"), "カタクチ")
expect_equal(make_shtname(prefec = "kumamoto", spcs = "urume"), "ウルメ")
expect_equal(make_shtname(prefec = "kumamoto", spcs = "maiwashi"), "マイワシ")
expect_equal(make_shtname(prefec = "kumamoto", spcs = "sabarui"), "サバ類")
expect_error(make_shtname(prefec = "kumamoto", spcs = "foo"),
"Unknown spcs name")
})
test_that("make_shtname() makes sheetname for nagasaki data", {
expect_equal(make_shtname(prefec = "nagasaki", spcs = "katakuchi"), "カタクチ")
expect_equal(make_shtname(prefec = "nagasaki", spcs = "urume"), "ウルメ")
expect_equal(make_shtname(prefec = "nagasaki", spcs = "maiwashi"), "マイワシ")
expect_equal(make_shtname(prefec = "nagasaki", spcs = "masaba"), "マサバ")
expect_equal(make_shtname(prefec = "nagasaki", spcs = "gomasaba"), "ゴマサバ")
expect_equal(make_shtname(prefec = "nagasaki", spcs = "maaji"), "マアジ")
expect_error(make_shtname(prefec = "nagasaki", spcs = "foo"),
"Unknown spcs name")
})
test_that("make_shtname() makes sheetname for kagoshima data", {
expect_equal(make_shtname(prefec = "kagoshima", spcs = "katakuchi"), "カタクチ")
expect_equal(make_shtname(prefec = "kagoshima", spcs = "urume"), "ウルメ")
expect_equal(make_shtname(prefec = "kagoshima", spcs = "maiwashi"), "マイワシ")
expect_equal(make_shtname(prefec = "kagoshima", spcs = "masaba"), "マサバ")
expect_equal(make_shtname(prefec = "kagoshima", spcs = "gomasaba"), "ゴマサバ")
expect_equal(make_shtname(prefec = "kagoshima", spcs = "maaji"), "マアジ")
expect_error(make_shtname(prefec = "kagoshima", spcs = "foo"),
"Unknown spcs name")
})
test_that("make_shtname() stops for unknown prefecture", {
expect_error(make_shtname(prefec = "foo", spcs = "katakuchi"),
"Unknown prefecture")
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.