]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/getopts_ref.rs
test: Make manual changes to deal with the fallout from removal of
[rust.git] / src / test / run-pass / getopts_ref.rs
1 // ignore-fast
2
3 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
4 // file at the top-level directory of this distribution and at
5 // http://rust-lang.org/COPYRIGHT.
6 //
7 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10 // option. This file may not be copied, modified, or distributed
11 // except according to those terms.
12
13 extern crate getopts;
14
15 use getopts::{optopt, getopts};
16 use std::vec_ng::Vec;
17
18 pub fn main() {
19     let args = Vec::new();
20     let opts = vec!(optopt("b", "", "something", "SMTHNG"));
21
22     match getopts(args.as_slice(), opts.as_slice()) {
23         Ok(ref m)  =>
24             assert!(!m.opt_present("b")),
25         Err(ref f) => fail!("{:?}", (*f).clone().to_err_msg())
26     };
27
28 }