blob: 4ceb8ed56a52b689bc03217ec186de756b33311d (
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
26
27
28
|
require 'spec_helper'
require 'oxidized/cli'
describe Oxidized::CLI do
before(:each) do
@original = ARGV
Oxidized.asetus = Asetus.new
end
after(:each) do
ARGV.replace @original
end
%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)
File.expects(:expand_path)
Kernel.expects(:exit)
assert_output("#{Oxidized::VERSION}\n") { Oxidized::CLI.new }
end
end
end
end
|