blob: 35d077ebe97384d9e22c29b860d70b17e6dd1f27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require "emoji"
describe Emoji do
describe "#install_badge" do
subject { described_class.install_badge }
it "returns 🍺 by default" do
expect(subject).to eq "🍺"
end
it "returns the contents of HOMEBREW_INSTALL_BADGE if set" do
ENV["HOMEBREW_INSTALL_BADGE"] = "foo"
expect(subject).to eq "foo"
end
end
end
|