autumn-web 0.5.0

An opinionated, convention-over-configuration web framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg(feature = "htmx")]
//! Tests for htmx embedding and serving.

#[test]
fn htmx_version_is_accessible() {
    let version = autumn_web::HTMX_VERSION;
    assert!(!version.is_empty());
    assert!(
        version.starts_with("2."),
        "Expected htmx 2.x, got {version}"
    );
}