Skip jsonb test on Travis

This commit is contained in:
Steven Fackler 2015-01-21 22:39:47 -08:00
parent bca16fd4c5
commit 1779d8c69d

View File

@ -146,6 +146,7 @@ fn test_json_params() {
#[test]
fn test_jsonb_params() {
if option_env!("TRAVIS").is_some() { return } // Travis doesn't have Postgres 9.4 yet
test_type("JSONB", &[(Some(Json::from_str("[10, 11, 12]").unwrap()),
"'[10, 11, 12]'"),
(Some(Json::from_str("{\"f\": \"asd\"}").unwrap()),