1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//! This crate provides an attribute macro for retrying tests multiple times before failing.
//!
//! # Examples
//!
//! By default retry will cause the test to be called three times before failing:
//! ```
//! use std::sync::atomic::{AtomicUsize, Ordering};
//!
//! #[test]
//! #[retry]
//! fn default() {
//! static COUNTER: AtomicUsize = AtomicUsize::new(1);
//! assert_eq!(counter.fetch_add(1, Ordering::Relaxed), 3);
//! }
//! ```
use TokenStream;
use quote;
use ;
/// An attribute which can be used with `#[test]` in order to retry a single
/// test multiple times before failing.
///
/// # Examples
///
/// By default retry will call the test function three times before failing:
/// ```
/// use std::sync::atomic::{AtomicUsize, Ordering};
///
/// #[test]
/// #[retry]
/// fn default() {
/// static COUNTER: AtomicUsize = AtomicUsize::new(1);
/// assert_eq!(counter.fetch_add(1, Ordering::Relaxed), 3);
/// }
/// ```