Commit d34b5e9c authored by Gabriel Mazetto's avatar Gabriel Mazetto

Merge branch '230603-usage-data-payload-reply_by_email_enabled-possible-issue' into 'master'

Usage data payload reply_by_email_enabled possible issue

Closes #230603

See merge request gitlab-org/gitlab!37421
parents 0b1ff420 870aee0a
...@@ -8,11 +8,11 @@ module Gitlab ...@@ -8,11 +8,11 @@ module Gitlab
class << self class << self
def enabled? def enabled?
config.enabled && config.address config.enabled && config.address.present?
end end
def supports_wildcard? def supports_wildcard?
config.address && config.address.include?(WILDCARD_PLACEHOLDER) config.address.present? && config.address.include?(WILDCARD_PLACEHOLDER)
end end
def supports_issue_creation? def supports_issue_creation?
......
...@@ -10,7 +10,7 @@ RSpec.describe Gitlab::IncomingEmail do ...@@ -10,7 +10,7 @@ RSpec.describe Gitlab::IncomingEmail do
end end
it 'returns true' do it 'returns true' do
expect(described_class.enabled?).to be_truthy expect(described_class.enabled?).to be(true)
end end
end end
...@@ -20,7 +20,7 @@ RSpec.describe Gitlab::IncomingEmail do ...@@ -20,7 +20,7 @@ RSpec.describe Gitlab::IncomingEmail do
end end
it "returns false" do it "returns false" do
expect(described_class.enabled?).to be_falsey expect(described_class.enabled?).to be(false)
end end
end end
end end
...@@ -32,7 +32,7 @@ RSpec.describe Gitlab::IncomingEmail do ...@@ -32,7 +32,7 @@ RSpec.describe Gitlab::IncomingEmail do
end end
it 'confirms that wildcard is supported' do it 'confirms that wildcard is supported' do
expect(described_class.supports_wildcard?).to be_truthy expect(described_class.supports_wildcard?).to be(true)
end end
end end
...@@ -42,7 +42,7 @@ RSpec.describe Gitlab::IncomingEmail do ...@@ -42,7 +42,7 @@ RSpec.describe Gitlab::IncomingEmail do
end end
it 'returns that wildcard is not supported' do it 'returns that wildcard is not supported' do
expect(described_class.supports_wildcard?).to be_falsey expect(described_class.supports_wildcard?).to be(false)
end end
end end
...@@ -52,7 +52,7 @@ RSpec.describe Gitlab::IncomingEmail do ...@@ -52,7 +52,7 @@ RSpec.describe Gitlab::IncomingEmail do
end end
it 'returns that wildcard is not supported' do it 'returns that wildcard is not supported' do
expect(described_class.supports_wildcard?).to be_falsey expect(described_class.supports_wildcard?).to be(false)
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment