summaryrefslogtreecommitdiff
path: root/spec/cli_spec.rb
blob: 0a6c91bebc3684c1804fdde95134a0c82e3c05ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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.replace [option] }

      it 'prints the version and exits' do
        Oxidized::Config.expects(:load)
        Oxidized.expects(:setup_logger)
        Kernel.expects(:exit)

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