Pat Maddox wrote:
Neil Cauldwell <[EMAIL PROTECTED]> writes:Does anyone know how I can write a spec along the lines of this (but a working implementation); it "should not include inactive users" do do_get assigns[:results].should_not include(users(:inactive_user)) end I'm a newbie so I'm not capable of explaining why it doesn't work, but hopefully someone can set me straight. ThanksWhat's the error you're getting? Because, assuming that stuff is hooked up properly, this ought to work fine. Pat _______________________________________________ rspec-users mailing list [email protected] http://rubyforge.org/mailman/listinfo/rspec-users
Also, what is your data? The matcher may not work as expected due to nuances in your data. For example, STI tends to mess things up in cases like this.
-Ben _______________________________________________ rspec-users mailing list [email protected] http://rubyforge.org/mailman/listinfo/rspec-users
