mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 05:29:17 -06:00
c9dab6fd08
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.
22 lines
607 B
Ruby
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
|