Thank you David it works



-----Original Message-----
From: [email protected] 
[mailto:[email protected]] On Behalf Of David Chelimsky
Sent: Monday, May 25, 2009 6:57 PM
To: rspec-users
Subject: Re: [rspec-users] spec for not null

On Mon, May 25, 2009 at 6:51 AM, Diwakar, ANGLER - EIT 
<[email protected]> wrote:
> how should we check not null in rspec
>
>          user_valid = @user.valid?
>         password_credential_valid = @password.valid?
>
>
>    I am getting the below error
>
>     Mock 'User_1001' received unexpected message :valid? with (no 
> args)

Assuming that @user is the same mock object that is causing the error, you need 
to tell the @user that it should receive valid?:

  @user.should_receive(:valid?).and_return(true)

I'm not sure what this has to do with checking for not null.

- David

>
> Diwa
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to