summaryrefslogtreecommitdiff
path: root/spec/ruby/command_line/dash_v_spec.rb
blob: a7abd9de82a5cb0c34a00fbb4b4c10cd45ae4247 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require File.expand_path('../../spec_helper', __FILE__)
require File.expand_path('../shared/verbose', __FILE__)

describe "The -v command line option" do
  it_behaves_like :command_line_verbose, "-v"

  describe "when used alone" do
    it "prints version and ends" do
      version = ruby_exe(nil, args: '--version')
      ruby_exe(nil, args: '-v').should == version
    end
  end
end