Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
20
tests/rustdoc/inline_cross/default-trait-method.rs
Normal file
20
tests/rustdoc/inline_cross/default-trait-method.rs
Normal file
|
@ -0,0 +1,20 @@
|
|||
// aux-build:default-trait-method.rs
|
||||
|
||||
extern crate foo;
|
||||
|
||||
// @has default_trait_method/trait.Item.html
|
||||
// @has - '//*[@id="tymethod.foo"]' 'fn foo()'
|
||||
// @!has - '//*[@id="tymethod.foo"]' 'default fn foo()'
|
||||
// @has - '//*[@id="tymethod.bar"]' 'fn bar()'
|
||||
// @!has - '//*[@id="tymethod.bar"]' 'default fn bar()'
|
||||
// @has - '//*[@id="method.baz"]' 'fn baz()'
|
||||
// @!has - '//*[@id="method.baz"]' 'default fn baz()'
|
||||
pub use foo::Item;
|
||||
|
||||
// @has default_trait_method/struct.Foo.html
|
||||
// @has - '//*[@id="method.foo"]' 'default fn foo()'
|
||||
// @has - '//*[@id="method.bar"]' 'fn bar()'
|
||||
// @!has - '//*[@id="method.bar"]' 'default fn bar()'
|
||||
// @has - '//*[@id="method.baz"]' 'fn baz()'
|
||||
// @!has - '//*[@id="method.baz"]' 'default fn baz()'
|
||||
pub use foo::Foo;
|
Loading…
Add table
Add a link
Reference in a new issue