mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 04:03:57 -06:00
22 lines
600 B
Ruby
22 lines
600 B
Ruby
|
require 'rails_helper'
|
||
|
|
||
|
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
|