summaryrefslogtreecommitdiff
path: root/spec/cli_spec.rb
blob: b2487667ccd44322b6049d71e3cc5df9cf2391cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'spec_helper'
require 'oxidized/cli'

describe Oxidized::CLI do
  let(:asetus) { mock() }

  after  { ARGV.replace @original }
  before { @original = ARGV }

  %w[-v --version].each do |option|
    describe option do
      before { ARGV.push(option) }

      it 'prints the version and exits' do
        Kernel.expects(:exit)

        proc {
          Oxidized::CLI.new
        }.must_output "#{Oxidized::VERSION}\n"
      end
    end
  end
end