私はレールに不慣れです:)私の最初のテストを実行しようとしています。なぜこのテストに合格するのですか?ユーザー名には少なくとも2文字が必要ですが、私のユーザー名にはそれ以上の文字が含まれていますが、それでもテストに合格します。
user.rb:
validates :username, :length => { :minimum => 2 }
user_spec.rb
require 'spec_helper'
describe User do
before do
@user = User.new(username: "Example User", email: "user@example.com",
password: "foobar", password_confirmation: "foobar")
end
describe "when name is not present" do
before { @user.username="aaaahfghg" }
it { should_not be_valid } end
end