20 lines
385 B
Rust
20 lines
385 B
Rust
|
|
//! Tests for web automation module
|
||
|
|
|
||
|
|
#[cfg(test)]
|
||
|
|
mod tests {
|
||
|
|
use super::*;
|
||
|
|
use crate::tests::test_util;
|
||
|
|
|
||
|
|
#[test]
|
||
|
|
fn test_web_automation_module() {
|
||
|
|
test_util::setup();
|
||
|
|
assert!(true, "Basic web automation module test");
|
||
|
|
}
|
||
|
|
|
||
|
|
#[test]
|
||
|
|
fn test_crawler() {
|
||
|
|
test_util::setup();
|
||
|
|
assert!(true, "Web crawler placeholder test");
|
||
|
|
}
|
||
|
|
}
|