discourse/spec/lib/validators/email_setting_validator_spe...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
590 B
Ruby
Raw Normal View History

# frozen_string_literal: true
RSpec.describe EmailSettingValidator do
2014-06-11 14:42:41 -04:00
describe "#valid_value?" do
subject(:validator) { described_class.new }
2014-06-11 14:42:41 -04:00
it "returns true for blank values" do
2015-01-09 11:34:37 -05:00
expect(validator.valid_value?("")).to eq(true)
expect(validator.valid_value?(nil)).to eq(true)
2014-06-11 14:42:41 -04:00
end
it "returns true if value is a valid email address" do
2015-01-09 11:34:37 -05:00
expect(validator.valid_value?("vader@example.com")).to eq(true)
2014-06-11 14:42:41 -04:00
end
it "returns false if value is not a valid email address" do
2015-01-09 11:34:37 -05:00
expect(validator.valid_value?("my house")).to eq(false)
2014-06-11 14:42:41 -04:00
end
end
end