rails:594
From: Kazuhiro Yoshida <moriq@m...>
Date: Fri, 04 Nov 2005 20:59:55 +0900
Subject: [rails:594] Re: postgresqlでrakeすると出るエラー
もりきゅうです。 Hiroyuki Adachi <adachi@t...> wrote: > 1) Error: > test_create(UsersControllerTest): > ActiveRecord::StatementInvalid: ERROR: null value in column "name" violates not-null constraint > : INSERT INTO users ("name", "password") VALUES(NULL, NULL) ああ。これは fixtures の問題ではないですね。 UsersController は generate scaffold で作ったものですよね。 def create @user = User.new(params[:user]) if @user.save でひっかかるので test でパラメータを渡してください。 def test_create num_users = User.count post :create, :user => {"name" => "moriq", "password" => "s3cret"} ---- Kazuhiro Yoshida moriq@m... -- ML: rails@r... 使い方: http://QuickML.com/ Web Site: http://wiki.fdiary.net/rails/ ML Archives: http://www.fdiary.net/ml/rails/
576 2005-11-04 01:34 [adachi@t... ] postgresqlでrakeすると出るエラー 581 2005-11-04 07:23 ┣[miyamuko@g... ] 583 2005-11-04 08:25 ┃┣[adachi@t... ] 584 2005-11-04 08:34 ┃┗[adachi@t... ] 586 2005-11-04 09:27 ┗[adachi@t... ] 587 2005-11-04 10:32 ┗[stoyan@g... ] 588 2005-11-04 10:55 ┗[adachi@t... ] 589 2005-11-04 11:21 ┗[moriq@m... ] 593 2005-11-04 12:48 ┗[adachi@t... ] -> 594 2005-11-04 12:59 ┣[moriq@m... ] 597 2005-11-04 21:23 ┃┗[adachi@t... ] 599 2005-11-05 04:26 ┃ ┗[moriq@m... ] 706 2005-11-27 15:58 ┗[craftgear@a... ] SoftwareDesign12月号の記事 707 2005-11-27 16:14 ┗[yu1@t... ] 709 2005-11-28 00:50 ┗[craftgear@a... ] 710 2005-11-28 02:38 ┗[yu1@t... ] 711 2005-11-28 02:59 ┗[craftgear@a... ]