mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 05:22:43 +08:00
FIX: validate presence of 'top menu' setting
This commit is contained in:
31
spec/components/validators/regex_presence_validator_spec.rb
Normal file
31
spec/components/validators/regex_presence_validator_spec.rb
Normal file
@ -0,0 +1,31 @@
|
||||
require "rails_helper"
|
||||
|
||||
RSpec.describe RegexPresenceValidator do
|
||||
subject { described_class.new(regex: 'latest', regex_error: 'site_settings.errors.must_include_latest') }
|
||||
|
||||
describe "#valid_value?" do
|
||||
describe "when value is present" do
|
||||
it "without regex match" do
|
||||
expect(subject.valid_value?("categories|new")).to eq(false)
|
||||
|
||||
expect(subject.error_message).to eq(I18n.t(
|
||||
"site_settings.errors.must_include_latest"
|
||||
))
|
||||
end
|
||||
|
||||
it "with regex match" do
|
||||
expect(subject.valid_value?("latest|categories")).to eq(true)
|
||||
end
|
||||
end
|
||||
|
||||
describe "when value is empty" do
|
||||
it "should not be valid" do
|
||||
expect(subject.valid_value?("")).to eq(false)
|
||||
|
||||
expect(subject.error_message).to eq(I18n.t(
|
||||
"site_settings.errors.must_include_latest"
|
||||
))
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user