You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
306 B
14 lines
306 B
2 years ago
|
require "rails_helper"
|
||
|
|
||
|
RSpec.describe Validations::Sales::PropertyInformationValidations do
|
||
|
subject(:date_validator) { validator_class.new }
|
||
|
|
||
|
describe "#validate_bedsit_has_one_room" do
|
||
|
context "when property is bedsit" do
|
||
|
end
|
||
|
|
||
|
context "when property is not a bedsit" do
|
||
|
end
|
||
|
end
|
||
|
end
|