Sha256: e275ffc6056f0a9f7b842c7b84247ec5dc27383323b02e69de69d20d99c8ba6a
Contents?: true
Size: 1.46 KB
Versions: 2
Compression:
Stored size: 1.46 KB
Contents
require 'spec_helper' describe Gitlab::Help do describe ".ri_cmd" do context "ri command found" do it "returns the path to RI" do allow(Gitlab::Help).to receive(:`).with(/which ri/).and_return('/usr/bin/ri') expect(Gitlab::Help.ri_cmd).to eq('/usr/bin/ri') end end context "ri command NOT found" do it "raises RuntimeError" do allow(Gitlab::Help).to receive(:`).with(/which ri/).and_return('') expect { Gitlab::Help.ri_cmd }.to raise_error RuntimeError end end end describe ".change_help_output!" do before do @cmd = "create_branch" @help_output = "Gitlab.#{@cmd}(4, 'new-branch', 'master')" @help_output_with_options = "Gitlab.groups({ per_page: 3 })" end it "returns a String of modified output" do Gitlab::Help.change_help_output! @cmd, @help_output expect(@help_output).to eq("Gitlab.create_branch 4 'new-branch' 'master'") end it "formats options hash and return a String of modified output" do Gitlab::Help.change_help_output! 'groups', @help_output_with_options expect(@help_output_with_options).to eq("Gitlab.groups \"{ per_page: 3 }\"") end end describe ".namespace" do before do @cmd = 'create_tag' @namespace = Gitlab::Help.namespace @cmd end it "returns the full namespace for a command" do expect(@namespace).to be_a String expect(@namespace).to eq("Gitlab::Client::Tags.#{@cmd}") end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gitlab-4.4.0 | spec/gitlab/help_spec.rb |
gitlab-4.3.0 | spec/gitlab/help_spec.rb |