Unit Test: Minimum Length Constraint
Let’s learn to write a unit test to implement a minimum length constraint.
We'll cover the following...
Defining the test
This test concerns the minimum length of the name
field. We want the minimum length to be two characters. We’ll start with the behavior we wish we had.
Press + to interact
context "when the name is less than 2 characters" doit "the user is invalid" douser = User.new(name: "a")user.valid?expect(user.errors.messages).to include(:name)endend
It sets a value that’s too short for the name
field and it expects it to fail.
Add the test to the widget below and run it. ...