Spec: avoid warning when stubbing ARGV

This commit is contained in:
Olle Jonsson 2016-09-01 20:47:31 +02:00
parent d23375f5ac
commit 91b5abc477

View File

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