use error_kit::CommonError;
#[test]
fn test_helper_functions_create_correct_error_types() {
let io_err = CommonError::io_error("test message");
assert!(matches!(io_err, CommonError::Io(_)));
let filename_err = CommonError::filename_error();
assert!(matches!(filename_err, CommonError::FilenameError));
let timestamp_err = CommonError::timestamp_parse_error();
assert!(matches!(timestamp_err, CommonError::TimestampParseError));
}