6
6
//@ count 'foo/index.html' '//h2[@class="location"]' 0
7
7
8
8
//@ matches 'foo/foo_mod/index.html' '//h1' 'Module foo_mod'
9
- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
9
+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
10
10
//@ matches - '//h2[@class="location"]' 'Module foo_mod'
11
11
pub mod foo_mod {
12
12
pub struct __Thing { }
13
13
}
14
14
15
15
extern "C" {
16
16
//@ matches 'foo/fn.foo_ffn.html' '//h1' 'Function foo_ffn'
17
- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
17
+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
18
18
pub fn foo_ffn ( ) ;
19
19
}
20
20
21
21
//@ matches 'foo/fn.foo_fn.html' '//h1' 'Function foo_fn'
22
- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
22
+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
23
23
pub fn foo_fn ( ) { }
24
24
25
25
//@ matches 'foo/trait.FooTrait.html' '//h1' 'Trait FooTrait'
26
- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
26
+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
27
27
//@ matches - '//h2[@class="location"]' 'FooTrait'
28
28
pub trait FooTrait { }
29
29
30
30
//@ matches 'foo/struct.FooStruct.html' '//h1' 'Struct FooStruct'
31
- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
31
+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
32
32
//@ matches - '//h2[@class="location"]' 'FooStruct'
33
33
pub struct FooStruct ;
34
34
35
35
//@ matches 'foo/enum.FooEnum.html' '//h1' 'Enum FooEnum'
36
- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
36
+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
37
37
//@ matches - '//h2[@class="location"]' 'FooEnum'
38
38
pub enum FooEnum { }
39
39
40
40
//@ matches 'foo/type.FooType.html' '//h1' 'Type Alias FooType'
41
- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
41
+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
42
42
//@ matches - '//h2[@class="location"]' 'FooType'
43
43
pub type FooType = FooStruct ;
44
44
45
45
//@ matches 'foo/macro.foo_macro.html' '//h1' 'Macro foo_macro'
46
- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
46
+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
47
47
#[ macro_export]
48
48
macro_rules! foo_macro {
49
49
( ) => { } ;
@@ -55,15 +55,15 @@ macro_rules! foo_macro {
55
55
mod bool { }
56
56
57
57
//@ matches 'foo/static.FOO_STATIC.html' '//h1' 'Static FOO_STATIC'
58
- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
58
+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
59
59
pub static FOO_STATIC : FooStruct = FooStruct ;
60
60
61
61
extern "C" {
62
62
//@ matches 'foo/static.FOO_FSTATIC.html' '//h1' 'Static FOO_FSTATIC'
63
- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
63
+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
64
64
pub static FOO_FSTATIC : FooStruct ;
65
65
}
66
66
67
67
//@ matches 'foo/constant.FOO_CONSTANT.html' '//h1' 'Constant FOO_CONSTANT'
68
- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
68
+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
69
69
pub const FOO_CONSTANT : FooStruct = FooStruct ;
0 commit comments