Merge pull request #409 from olleolleolle/specs/avoid-a-warning-by-using-stub-const

Spec: avoid Ruby warning about already-defined constant
This commit is contained in:
Olle Jonsson 2016-09-01 21:24:48 +02:00 committed by GitHub
commit d4140f05c9

View File

@ -63,9 +63,10 @@ describe GitHubChangelogGenerator::Parser do
end
end
describe ".fetch_user_and_project" do
before :each do
ARGV = ["https://github.com/skywinder/github-changelog-generator"]
before do
stub_const("ARGV", ["https://github.com/skywinder/github-changelog-generator"])
end
context do
let(:valid_user) { "initialized_user" }
let(:options) { { user: valid_user } }