discourse/spec/lib/validators/group_setting_validator_spec.rb
David Taylor c9dab6fd08
DEV: Automatically require 'rails_helper' in all specs (#16077)
It's very easy to forget to add `require 'rails_helper'` at the top of every core/plugin spec file, and omissions can cause some very confusing/sporadic errors.

By setting this flag in `.rspec`, we can remove the need for `require 'rails_helper'` entirely.
2022-03-01 17:50:50 +00:00

22 lines
607 B
Ruby

# frozen_string_literal: true
describe GroupSettingValidator do
describe '#valid_value?' do
subject(:validator) { described_class.new }
it "returns true for blank values" do
expect(validator.valid_value?('')).to eq(true)
expect(validator.valid_value?(nil)).to eq(true)
end
it "returns true if value matches an existing group" do
Fabricate(:group, name: "hello")
expect(validator.valid_value?('hello')).to eq(true)
end
it "returns false if value does not match a group" do
expect(validator.valid_value?('notagroup')).to eq(false)
end
end
end