Files
fil/e2e/r/tests/test_registry_operations.R

22 lines
845 B
R
Raw Permalink Normal View History

2026-06-01 23:40:55 +02:00
# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:4e15143f4af1ae8bafbdb1506ef057da924484c66a19483966333558ad437e75
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
# Issues & docs: https://github.com/kreuzberg-dev/alef
# E2e tests for category: registry_operations
test_that("extensions_docx: Get file extensions for DOCX MIME type", {
result <- get_extensions_for_mime(mime_type = "application/vnd.openxmlformats-officedocument.wordprocessingml.document")
expect_true(TRUE)
})
test_that("extensions_html: Get file extensions for HTML MIME type", {
result <- get_extensions_for_mime(mime_type = "text/html")
expect_true(TRUE)
})
test_that("extensions_pdf: Get file extensions for PDF MIME type", {
result <- get_extensions_for_mime(mime_type = "application/pdf")
expect_true(TRUE)
})