2012-01-24 17:40:22 -08:00
|
|
|
#[doc = "
|
|
|
|
|
|
|
|
Pulls a brief description out of a long description.
|
|
|
|
|
|
|
|
If the first paragraph of a long description is short enough then it
|
|
|
|
is interpreted as the brief description.
|
|
|
|
|
|
|
|
"];
|
|
|
|
|
|
|
|
export mk_pass;
|
|
|
|
|
|
|
|
fn mk_pass() -> pass {
|
2012-03-08 17:00:03 -08:00
|
|
|
text_pass::mk_pass("trim", {|s| str::trim(s)})
|
2012-01-24 17:40:22 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2012-03-09 18:12:15 -08:00
|
|
|
fn should_trim_text() {
|
|
|
|
let doc = test::mk_doc("#[doc = \" desc \"] \
|
2012-01-31 18:32:37 -08:00
|
|
|
mod m { }");
|
2012-03-02 18:33:25 -08:00
|
|
|
assert doc.cratemod().mods()[0].desc() == some("desc");
|
2012-01-24 17:40:22 -08:00
|
|
|
}
|
|
|
|
|
2012-01-31 18:32:37 -08:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
2012-03-02 18:33:25 -08:00
|
|
|
fn mk_doc(source: str) -> doc::doc {
|
2012-02-20 21:08:19 -08:00
|
|
|
astsrv::from_str(source) {|srv|
|
|
|
|
let doc = extract::from_srv(srv, "");
|
2012-02-27 18:07:16 -08:00
|
|
|
let doc = attr_pass::mk_pass().f(srv, doc);
|
|
|
|
mk_pass().f(srv, doc)
|
2012-02-20 21:08:19 -08:00
|
|
|
}
|
2012-01-31 18:32:37 -08:00
|
|
|
}
|
2012-06-25 20:00:46 -07:00
|
|
|
}
|