doco 0.2.3

A framework and runner for end-to-end tests for web applications
Documentation
1
2
3
4
5
6
7
8
9
10
//! Utilities for testing this crate

/// Asserts that a type implements `Send`
pub fn assert_send<T: Send>() {}

/// Asserts that a type implements `Sync`
pub fn assert_sync<T: Sync>() {}

/// Asserts that a type implements `Unpin`
pub fn assert_unpin<T: Unpin>() {}