21 lines
418 B
Rust
21 lines
418 B
Rust
mod common;
|
|
|
|
use dotenvy::*;
|
|
use std::{env, error::Error, result::Result};
|
|
|
|
use crate::common::*;
|
|
|
|
#[test]
|
|
fn test_from_filename() -> Result<(), Box<dyn Error>> {
|
|
let dir = make_test_dotenv()?;
|
|
|
|
from_filename(".env")?;
|
|
|
|
assert_eq!(env::var("TESTKEY")?, "test_val");
|
|
assert_eq!(env::var("EXISTING")?, "from_env");
|
|
|
|
env::set_current_dir(dir.path().parent().unwrap())?;
|
|
dir.close()?;
|
|
Ok(())
|
|
}
|