<HTML><BODY style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space; "><DIV>Hey folks,</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>How do I mock a model that is given to me by a Rails plugin? I'm trying to mock Session from the restful_authentication plugin but I get a number of errors telling me RSpec doesn't recognize Session.</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>NameError in 'SessionsController handling GET /sessions/new should be successful'</DIV><DIV>uninitialized constant Session</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>An example of my usage:</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>  before do</DIV><DIV>    @session = mock_model(Session)</DIV><DIV>    Session.stub!(:new).and_return(@session)</DIV><DIV>  end</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>Thanks!</DIV><BR><DIV> <SPAN class="Apple-style-span" style="border-collapse: separate; border-spacing: 0px 0px; color: rgb(0, 0, 0); font-family: Georgia; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; text-align: auto; -khtml-text-decorations-in-effect: none; text-indent: 0px; -apple-text-size-adjust: auto; text-transform: none; orphans: 2; white-space: normal; widows: 2; word-spacing: 0px; "><SPAN class="Apple-style-span" style="border-collapse: separate; border-spacing: 0px 0px; color: rgb(0, 0, 0); font-family: Georgia; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; text-align: auto; -khtml-text-decorations-in-effect: none; text-indent: 0px; -apple-text-size-adjust: auto; text-transform: none; orphans: 2; white-space: normal; widows: 2; word-spacing: 0px; "><DIV>Dan Croak</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><A href="http://thoughtbot.com">http://thoughtbot.com</A></DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">organic brains. digital solutions.</DIV></SPAN><BR class="Apple-interchange-newline"></SPAN> </DIV><BR></BODY></HTML>