discourse/spec/components/validators/regex_presence_validator_spec.rb
Sam Saffron 4ea21fa2d0 DEV: use #frozen_string_literal: true on all spec
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
2019-04-30 10:27:42 +10:00

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