Skip to main content

rustpython_doc/
lib.rs

1#![no_std]
2
3include!("./data.inc.rs");
4
5#[cfg(test)]
6mod test {
7    use super::DB;
8
9    #[test]
10    fn test_db() {
11        let doc = DB.get("array._array_reconstructor");
12        assert!(doc.is_some());
13    }
14}