opencrabs 0.3.57

The autonomous, self-improving AI agent. Single Rust binary. Every channel. Install with: cargo install opencrabs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::tui::components::logo::*;

#[test]
fn test_logo_not_empty() {
    assert!(!get_logo().is_empty());
    assert!(!get_croissant().is_empty());
    assert!(!get_small_logo().is_empty());
}

#[test]
fn test_logo_with_version() {
    let logo = get_logo_with_version("0.1.0");
    assert!(logo.contains("0.1.0"));
}