jugyo / earthquake

Twitter terminal client with streaming API support.
MIT License
661 stars 94 forks source link

Catch SystemExit in option_parser_spec #161

Closed k0kubun closed 9 years ago

k0kubun commented 10 years ago

Earthquake::OptionParser.new(['--help']).parse will raise SystemExit because of this line. Since rescue catches only StandardError by default, L54 does not catch SystemExit and this spec fails. I fixed it.