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); }