Bug: require ActiveSupport core_ext blank (#520)

This commit is contained in:
Olle Jonsson
2017-05-25 14:07:34 +02:00
committed by GitHub
parent e9ee9556ce
commit 6ad5aa106d
3 changed files with 24 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
# frozen_string_literal: true
module GitHubChangelogGenerator
describe Generator do
describe "#get_string_for_issue" do
let(:issue) do
{ "title" => "Bug in code" }
end
it "formats an issue according to options" do
expect do
described_class.new.get_string_for_issue(issue)
end.not_to raise_error
end
end
end
end