describe GitHubChangelogGenerator::ParserFile do describe ".github_changelog_generator" do context "when no has file" do let(:options) { {} } let(:parse) { GitHubChangelogGenerator::ParserFile.new(options) } subject { parse.parse! } it { is_expected.to be_nil } end context "when file is empty" do let(:options) { {} } let(:parse) { GitHubChangelogGenerator::ParserFile.new(options, StringIO.new("")) } it "does not change the options" do expect { parse.parse! }.to_not change { options } end end context "when file is incorrect" do let(:options) { {} } let(:options_before_change) { options.dup } let(:file) { StringIO.new("unreleased_label: staging\nunreleased: false") } let(:parse) do GitHubChangelogGenerator::ParserFile.new(options, file) end it { expect { parse.parse! }.to raise_error(GitHubChangelogGenerator::ParserError) } end context "when override default values" do let(:default_options) { GitHubChangelogGenerator::Parser.default_options } let(:options) { {}.merge(default_options) } let(:options_before_change) { options.dup } let(:file) { StringIO.new("unreleased_label=staging\nunreleased=false\nheader==== Changelog ===") } let(:parse) { GitHubChangelogGenerator::ParserFile.new(options, file) } it "changes the options" do expect { parse.parse! }.to change { options } .from(options_before_change) .to(options_before_change.merge(unreleased_label: "staging", unreleased: false, header: "=== Changelog ===")) end context "turns exclude-labels into an Array", bug: '#327' do let(:file) do StringIO.new(<