File tree Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,26 @@ indicatif = "0.16.2"
29
29
# parameterized tests
30
30
yare = " 1.0.1"
31
31
32
+ # --- Examples
33
+
32
34
[[example ]]
33
35
name = " json_lines"
34
36
required-features = [" channel_reporter" ]
35
37
36
38
[[example ]]
37
39
name = " readme"
38
40
required-features = [" channel_reporter" ]
41
+
42
+ # --- Integration tests
43
+
44
+ [[test ]]
45
+ name = " collecting_handler"
46
+ required-features = [" channel_reporter" ]
47
+
48
+ [[test ]]
49
+ name = " multi_handler"
50
+ required-features = [" channel_reporter" ]
51
+
52
+ [[test ]]
53
+ name = " registering_handler"
54
+ required-features = [" channel_reporter" ]
Original file line number Diff line number Diff line change 1
1
// A sample implementation which collects the events it receives
2
- #![ cfg( feature = "channel_reporter" ) ]
3
2
extern crate core;
4
3
5
4
use std:: sync:: atomic:: { AtomicUsize , Ordering } ;
Original file line number Diff line number Diff line change 1
1
// A sample implementation which collects the events it receives
2
- #![ cfg( feature = "channel_reporter" ) ]
3
2
extern crate core;
4
3
5
4
use std:: marker:: PhantomData ;
Original file line number Diff line number Diff line change 1
1
// A sample implementation which collects the events it receives
2
- #![ cfg( feature = "channel_reporter" ) ]
3
2
extern crate core;
4
3
5
4
use std:: sync:: atomic:: { AtomicUsize , Ordering } ;
You can’t perform that action at this time.
0 commit comments