Re-enable ResourceTask tests

This commit is contained in:
Manish Goregaokar 2015-10-06 03:21:16 +05:30
parent f03f59f231
commit 5212171156

View file

@ -12,15 +12,13 @@ use std::sync::mpsc::channel;
use url::Url;
// Disabled, per https://github.com/sfackler/rust-openssl/issues/281
//#[test]
#[test]
fn test_exit() {
let resource_task = new_resource_task("".to_owned(), None);
resource_task.send(ControlMsg::Exit).unwrap();
}
// Disabled, per https://github.com/sfackler/rust-openssl/issues/281
//#[test]
#[test]
fn test_bad_scheme() {
let resource_task = new_resource_task("".to_owned(), None);
let (start_chan, start) = ipc::channel().unwrap();