Build docs with cargo

This commit is contained in:
Steven Fackler 2014-07-28 20:04:09 -07:00
parent b76b5810cf
commit d094aa615b
2 changed files with 5 additions and 7 deletions

View File

@ -10,6 +10,7 @@ before_script:
script:
- cargo test
- rustdoc -L target/test -L target/test/deps --test src/lib/lib.rs
- rustdoc -L target/test/deps src/lib/lib.rs
- cargo doc --no-deps
after_script:
- mv target/doc .
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh

View File

@ -407,8 +407,6 @@ fn test_lazy_query() {
let stmt = or_fail!(trans.prepare("SELECT id FROM foo ORDER BY id"));
let result = or_fail!(trans.lazy_query(&stmt, [], 2));
assert_eq!(values, result.map(|row| row.unwrap().get(0u)).collect());
trans.set_rollback();
}
#[test]
@ -475,9 +473,7 @@ fn test_too_few_params() {
#[test]
fn test_too_many_params() {
let conn = or_fail!(PostgresConnection::connect("postgres://postgres@localhost", &NoSsl));
match conn.execute("SELECT $1::INT, $2::INT", [&1i32,
&2i32,
&3i32]) {
match conn.execute("SELECT $1::INT, $2::INT", [&1i32, &2i32, &3i32]) {
Err(PgWrongParamCount { expected: 2, actual: 3 }) => {},
res => fail!("unexpected result {}", res)
}
@ -538,7 +534,8 @@ fn test_custom_notice_handler() {
}
}
let conn = or_fail!(PostgresConnection::connect("postgres://postgres@localhost?client_min_messages=NOTICE", &NoSsl));
let conn = or_fail!(PostgresConnection::connect(
"postgres://postgres@localhost?client_min_messages=NOTICE", &NoSsl));
conn.set_notice_handler(box Handler);
or_fail!(conn.execute("CREATE FUNCTION pg_temp.note() RETURNS INT AS $$
BEGIN