tesults-test 1.0.0

Rust test integration for Tesults — enhanced test reporting with #[tesults_test::test]
Documentation
// Integration tests — run without TESULTS_TARGET so upload is skipped silently.

#[tesults_test::test]
fn passes() {
    assert_eq!(2 + 2, 4);
}

#[tesults_test::test]
fn with_helpers() {
    tesults_test::description("verifies helper functions compile and run");
    tesults_test::custom("env", "test");
    tesults_test::step("step one", "pass", "first step", "");
    assert!(true);
}

#[tesults_test::test]
#[should_panic]
fn expected_panic() {
    panic!("expected");
}

#[tesults_test::test]
fn with_file_upload() {
    let path = std::env::temp_dir().join("tesults_test_upload.txt");
    std::fs::write(&path, "tesults-test file upload verification").unwrap();
    tesults_test::description("Verifies file upload functionality");
    tesults_test::file(path.to_str().unwrap());
    assert!(path.exists());
}