Skip to content

Commit

Permalink
Rollup merge of rust-lang#59711 - GuillaumeGomez:substring-test, r=Qu…
Browse files Browse the repository at this point in the history
…ietMisdreavus

Add back the substring test

Fixes rust-lang#58331.

r? @QuietMisdreavus
  • Loading branch information
cramertj authored Apr 11, 2019
2 parents c9e320d + 894142d commit b9a99b9
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/test/rustdoc-js/substring.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const QUERY = 'waker_from';

const EXPECTED = {
'others': [
{ 'path': 'substring::SuperWaker', 'name': 'local_waker_from_nonlocal' },
{ 'path': 'substring::SuperWakerTask', 'name': 'local_waker_from_nonlocal' },
],
};
21 changes: 21 additions & 0 deletions src/test/rustdoc-js/substring.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
pub struct SuperWaker;

impl SuperWaker {
pub fn local_waker_from_nonlocal() {}
pub fn local_waker_frm_nonlocal() {}
pub fn some_method() {}
pub fn some_other_method() {}
pub fn waker_non_local() {}
pub fn from_non_local() {}
}

pub struct SuperWakerTask;

impl SuperWakerTask {
pub fn local_waker_from_nonlocal() {}
pub fn local_waker_frm_nonlocal() {}
pub fn some_method() {}
pub fn some_other_method() {}
pub fn waker_non_local() {}
pub fn from_non_local() {}
}

0 comments on commit b9a99b9

Please sign in to comment.