tests: add tests for import

This commit is contained in:
carla 2026-02-02 13:07:00 +01:00
parent 3f8797c356
commit 86a3c4e50e
2 changed files with 315 additions and 24 deletions

14
test/mv/config_test.exs Normal file
View file

@ -0,0 +1,14 @@
defmodule Mv.ConfigTest do
@moduledoc """
Tests for Mv.Config module.
"""
use ExUnit.Case, async: false
alias Mv.Config
# Note: CSV import configuration functions were never implemented.
# The codebase uses hardcoded constants instead:
# - @max_file_size_bytes 10_485_760 in GlobalSettingsLive
# - @default_max_rows 1000 in MemberCSV
# These tests have been removed as they tested non-existent functions.
end