cargo-test-filter 0.1.1

A cargo subcommand for intelligent test filtering and compilation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Database-specific integration tests

// @tag: integration
// @tag: database
// @tag: slow
#[test]
fn test_database_migration() {
    assert!(true);
}

// @tag: integration
// @tag: database
// @tag: fast
#[test]
fn test_database_query() {
    assert!(2 * 2 == 4);
}