mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 21:19:41 -06:00
4ea21fa2d0
This change both speeds up specs (less strings to allocate) and helps catch cases where methods in Discourse are mutating inputs. Overall we will be migrating everything to use #frozen_string_literal: true it will take a while, but this is the first and safest move in this direction
34 lines
896 B
Ruby
34 lines
896 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|