-- path: /repo/src/lib.rs
fn helper() {}

#[cfg(test)]
mod tests {
    use super::helper;

    #[test]
    fn run() {
        helper();
    }
}
