|
|
|
|
|
by ohbarye
752 days ago
|
|
Yeah, the easiest way is to generate attributes and instantiate any Rails model like the one below: Pbt.assert do
Pbt.property(name: Pbt.printable_string, age: Pbt.integer(min: 0, max: 100)) do |name:, age:|
user = User.new(name: name, age: age)
# write your test here
end
end
|
|