add lb option

This commit is contained in:
Josh
2018-05-11 15:57:31 -04:00
parent b452932767
commit 0f8a4734b2
13 changed files with 183 additions and 41 deletions

View File

@ -15,9 +15,9 @@ class UserTest < ActiveSupport::TestCase
assert_not @steve.valid?
end
test "email should be present." do
test "should allow nil email." do
@steve.email = nil
assert_not @steve.valid?
assert @steve.valid?
end
test "username should be present." do