active questions tagged rspec - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T16:47:52Z http://stackoverflow.com/feeds/tag/rspec http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1528868/rails-rspec-with-multiple-databases 0 Rails RSpec with Multiple Databases Ryan Heneise 2009-10-07T00:22:13Z 2009-11-28T07:00:03Z <p>I run a Rails app, and we're in the process of splitting out our signup process to a separate app. The signup app has its own separate database (for CMS and collecting prospects), but it also needs to have access to the main database. This works really well using <code>ActiveRecord::Base.establish_connection</code>. </p> <p>However, I'd like to be able to write some specs. The trouble is, how can I write specs/tests without clearing out my development database every time my tests run? If I go into the console in test mode, it's obvious the the test mode is hooked into the development database from my main app. </p> <p>Here's what my database.yml file looks like: </p> <pre><code>development: database: signup_dev test: database: signup_test main_app_dev: database: main_app_dev main_app_test: database: main_app_test </code></pre> <p>Based on this file, I'd like <code>establish_connection</code> to connect to connect to the database <code>my_app_dev</code> in development mode, and <code>my_app_test</code> in test mode. Any ideas?</p> http://stackoverflow.com/questions/1808800/should-i-mock-my-model-in-rspec-controller-examples 0 Should I mock my model in Rspec controller examples? Lee 2009-11-27T13:32:25Z 2009-11-27T16:13:07Z <p>I am finding holes in my coverage because I have been mocking my models in controller examples. When I remove a model's method upon which a controller depends, I do not get a failure. </p> <p>Coming from TDD in statically typed languages, I would always mock dependencies to the object under test that hit the database to increase speed. I would still get failures in the above example, since my mocks subclassed the original object. I am looking for best practices in a dynamic language. </p> <p>Thanks.</p> http://stackoverflow.com/questions/1804847/how-thorough-should-you-get-with-rspec-testing 2 How thorough should you get with RSpec testing? Shpigford 2009-11-26T17:15:12Z 2009-11-26T18:15:33Z <p>I'm just starting to grasp BDD and RSpec and one thing I'm really having trouble with is figuring out how thorough I should be with my testing.</p> <p>I'm just not understanding how fine-grained my testing should be to still be useful but not double development time.</p> <p>Is it just a matter of preference? Or is there some general standard for what should be tested?</p> http://stackoverflow.com/questions/1803352/how-do-i-silence-the-following-rightaws-messages-when-running-tests 0 How do I silence the following RightAWS messages when running tests Laurie Young 2009-11-26T12:15:16Z 2009-11-26T17:04:38Z <p>I'm using the RighAWS gem, and mocking at the http level so that the RightAWS code is being executed as part of my tests. </p> <p>When this happens I get the following output</p> <p><code>....New RightAws::S3Interface using per_request-connection mode Opening new HTTP connection to s3.amazonaws.com:80 .New RightAws::S3Interface using per_request-connection mode .</code></p> <p>Even though all the tests pass, when I do have errors its harder to scan them because of this output. is there a nice way to silence it?</p> http://stackoverflow.com/questions/1799254/guidance-on-testing-extremely-long-form-with-20-required-fields-using-rspec-c 0 Guidance on testing extremely long form with 20+ required fields, using Rspec / Cucumber mike 2009-11-25T19:06:38Z 2009-11-26T11:08:39Z <p>Hi all,</p> <p>Just wanted to get some opinions on how to go about testing an extremely long form with 20+ required fields. It seems like my Cucumber scenario could be like 25 lines long if I tried to describe every field that need to be filled in (something like "And I fill in "Name:" with blah, And I fill in "Address" with foo, etc.).</p> <p>If I simply say "When I provide all required information" as one of the Cucumber steps - it seems a little empty, but it keeps things clean. I then use Factory Girl to create a factory to represent a valid object, to test in cucumber steps and in model specs. Additionally I have model specs to make sure all required fields are included in the creation of the new object.</p> <p>Question #1 - Does this suffice?</p> <p>Question #2 - If I have 20+ required fields (this form collects a lot personal contact / history info), do you write a 20+ tests in your rspec model test to ensure each one of those fields is properly accounted for?</p> <p>I know I cheated, asking 2 questions.. ;)</p> http://stackoverflow.com/questions/1802742/rspec-view-testing-how-to-modify-params 0 RSpec View testing: How to modify params? sebastiangeiger 2009-11-26T10:03:07Z 2009-11-26T10:18:15Z <p>I am trying to test my views with RSpec. The particular view that is causing me troubles changes its appearance depending on a url parameter:</p> <p><code>link_to "sort&gt;name", model_path(:sort_by =&gt; 'name')</code> which results in <code>http://mydomain/model?sort_by=name</code></p> <p>My view then uses this parameter like that:</p> <pre><code>&lt;% if params[:sort_by] == 'name' %&gt; &lt;div&gt;Sorted by Name&lt;/div&gt; &lt;% end %&gt; </code></pre> <p>The RSpec looks like this:</p> <pre><code>it "should tell the user the attribute for sorting order" do #Problem: assign params[:sort_for] = 'name' render "/groups/index.html.erb" response.should have_tag("div", "Sorted by Name") end </code></pre> <p>I would like to test my view (without controller) in RSpec but I can't get this parameter into my <code>params</code> variable. I tried <code>assign</code> in all different flavours:</p> <ul> <li><code>assign[:params] = {:sort_by =&gt; 'name'} </code></li> <li><code>assign[:params][:sort_by] = 'name'</code></li> <li>...</li> </ul> <p>no success so far. Every idea is appreciated.</p> http://stackoverflow.com/questions/1785382/rspec-expecting-a-message-multiple-times-but-with-differing-parameters 0 RSpec: Expecting a message multiple times but with differing parameters Chris Rittersdorf 2009-11-23T19:23:30Z 2009-11-24T16:05:20Z <p>I currently have some expectations set up on a mock with consecutive calls:</p> <p>The spec:</p> <pre><code>@my_mock = mock("a_mock") @options1 = {:some =&gt; "option"} @options2 = {:some_other =&gt; "option"} @first_param = mock("first_param") @my_mock.should_receive(:a_message).with(@first_param, @options1) @my_mock.should_receive(:a_message).with(@first_param, @options2) </code></pre> <p>However, i get the following:</p> <pre><code>Mock "a_mock" received :a_message with unexpected arguments expected: (#&lt;Spec::Mocks::Mock:0x81b8ca3c @name="first_param"{:some =&gt; "option"}) got: (#&lt;Spec::Mocks::Mock:0x81b8ca3c @name="first_param"&gt;, {:some_other =&gt; "option"}) </code></pre> <p>When I debug this, the first expectation IS getting called. Do I have to specify anything else before I can expect consecutive calls with the same message but differing parameters?</p> http://stackoverflow.com/questions/1772142/rspec-in-rails-how-to-skip-a-beforefilter 0 RSpec in Rails: How to skip a before_filter? sebastiangeiger 2009-11-20T17:43:10Z 2009-11-24T06:28:14Z <p>Hello everyone,</p> <p>I am trying to test my controller and maintain separation of concerns.</p> <p><strong>The first concern is "Who is able to execute which action?"</strong><br> I am using <em>authlogic</em> for authentication and <em><a href="http://github.com/be9/acl9" rel="nofollow">be9's acl9</a></em> for authorization. But this should not matter, all my authorization concerns are handled in a <code>before_filter</code>. I am testing such a <code>before_filter</code> by something similar to this: </p> <pre><code>describe SomeModelsController, "GET to index (authorization)" do before(:each) do @siteadmin = mock_model(User) @siteadmin.stub!(:has_role?).with("siteadmin", nil).and_return(true) end it "should grant access to a siteadmin" do controller.should_receive(:current_user).at_least(:once).and_return(@siteadmin) get :index response.should be_success end end </code></pre> <p>This spec is working just fine!</p> <p><strong>Now, the second concern is "Does the action do what it is supposed to do?"</strong><br> This does not involve checking authorization. The best/cleanest solution would be skipping that <code>before_filter</code> all together and just do something like:</p> <pre><code>describe SomeModelsController, "GET to index (functional)" do it "should find all Models" do Model.should_receive(:find).with(:all) end end </code></pre> <p>Without having to worry about which user with wich role has to logged in first. Right now I solved it like that:</p> <pre><code>describe SomeModelsController, "GET to index (functional)" do before(:each) do @siteadmin = mock_model(User) @siteadmin.stub!(:has_role?).with("siteadmin", nil).and_return(true) controller.stub!(:current_user).and_return(@siteadmin) end it "should find all Models" do Model.should_receive(:find).with(:all) end end </code></pre> <p>If I now decided that my siteadmin does not have the right to access the index action anymore, it would not only break one spec - namely the spec that HAS to break in such a case - but also the totally unrelated second spec. </p> <p>I know this is basically a minor issue, but it would be nice if somebody could come up with an (elegant) solution!</p> http://stackoverflow.com/questions/1782988/how-to-fix-a-spec-for-stripping-hml-tags-after-adding-javascript-to-a-view-in-rai 0 How to fix a spec for stripping hml tags after adding javascript to a view in Rails? brett 2009-11-23T12:52:12Z 2009-11-23T16:52:56Z <p>Working on a request to add a pretty tooltip to a page (using jQuery tooltip plugin, as recommended by others on my team). Pretty tooltip is working fine, but two of the existing specs now fail, an example below:</p> <pre><code>describe 'with a discussion post containing html' do before(:each) do @post.update_attributes(:body =&gt; "some &lt;strong&gt;bold and &lt;i&gt;italic&lt;/i&gt;&lt;/strong&gt; text") assigns[:posts] = @discussion.posts.paginate(:page =&gt; 1) render end it 'should strip the html tags from the post body' do response.should say('some bold and italic text') end end </code></pre> <p>For completness, here is the javascript I have added to the discussions show page and the resulting rspec.</p> <pre><code>&lt;script type="text/javascript" charset="utf-8"&gt; $(function(){ $('#useful_item_submit').tooltip(); }); &lt;/script&gt; &lt;div id="useful_item_form" &gt; &lt;% form_for [flaggable, flaggable.useful_items.new] do |f| -%&gt; &lt;div&gt; &lt;%= f.submit "I find this useful", :title =&gt; 'Click to let others know you found this useful' %&gt; &lt;/div&gt; &lt;% end -%&gt; &lt;/div&gt; </code></pre> <p>Should I change the test to ignore the extra javascript or should I not have the javascript in the show.html.erb file?</p> <p>Output from spec ============</p> <pre><code>'discussions/show.html.erb with a discussion post containing html should strip the html tags from the post body' FAILED &lt;"some bold and italic text"&gt; expected but was &lt;"some bold and italic text\n\t\t\n $(function(){\n $('#useful_item_submit').tooltip();\n });"&gt;. &lt;false&gt; is not true. </code></pre> http://stackoverflow.com/questions/1783397/rspec-setup-for-an-application-that-depends-on-an-external-database-from-another 0 RSpec setup for an application that depends on an external database from another application. Chris Rittersdorf 2009-11-23T14:22:00Z 2009-11-23T16:37:18Z <p>I've had to add features to an application that depends on a database from another application. I've been able to set up a connection to this external database and pull data from it. However, I'm not sure how to get my main application to create a test database for this external application. </p> <p>It would be awesome if there some way to pull in the schema for this database and create it in the same manner that 'rake db:test:prepare' does. Is there any configuration capabilities for RSpec to do this, or will I have to roll my own task?</p> http://stackoverflow.com/questions/1316044/rspec-should-change-with-floating-point 0 Rspec 'should change' with floating point Bogdan Gusiev 2009-08-22T14:05:36Z 2009-11-22T17:12:47Z <p>Is it possible to use RSpec <code>.should(change(...)).by(...)</code> with float numbers and set the compare precision like this:</p> <pre><code>lambda { ...}.should change(unit, :price).by(12.151, 10e-5) </code></pre> <p>Thanks,</p> http://stackoverflow.com/questions/1480537/how-can-i-validate-exits-and-aborts-in-rspec 2 How can I validate exits and aborts in RSpec? cfeduke 2009-09-26T06:02:12Z 2009-11-21T20:28:53Z <p>I am trying to spec behaviors for command line arguments my script receives to ensure that all validation passes. Some of my command line arguments will result in <code>abort</code> or <code>exit</code> being invoked because the parameters supplied are missing or incorrect.</p> <p>I am trying something like this which isn't working:</p> <pre><code># something_spec.rb require 'something' describe Something do before do Kernel.stub!(:exit) end it "should exit cleanly when -h is used" do s = Something.new Kernel.should_receive(:exit) s.process_arguments(["-h"]) end end </code></pre> <p>The <code>exit</code> method is firing cleanly preventing RSpec from validating the test (I get "SystemExit: exit").</p> <p>I have also tried to <code>mock(Kernel)</code> but that too is not working as I'd like (I don't see any discernible difference, but that's likely because I'm not sure how exactly to mock Kernel and make sure the mocked Kernel is used in my <code>Something</code> class).</p> http://stackoverflow.com/questions/1758444/silencing-factory-girl-logging 5 Silencing Factory Girl logging Sean McCleary 2009-11-18T19:27:37Z 2009-11-21T01:02:40Z <p>Just to clear the air, I am not some cruel factory master trying to silence working ladies. I am having a very annoying problem where when using Thoughtbot's factory girl in my specs, every time Factory.create(:foo) is used, the newly created ActiveRecord model instance is logged to the console. This makes looking at my console output more difficult to visually filter out all of the extra logging. Is there a setting somewhere or a flag that can be set that will silence this extra logging?</p> <p>Below is a small example of my rspec output. The '.' at the beginning of each line, in this case, is a successful test. </p> <pre><code>loading autotest/rspec /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby /Library/Ruby/Gems/1.8/gems/rspec-1.2.9/bin/spec --autospec spec/publisher_spec.rb -O spec/spec.opts #&lt;Event id: nil, oid: "mainEvent1", name: "Main Event", short_name: "mainevent", time_zone: "PST", created_at: nil, updated_at: nil, draft: true, draft_origin_id: nil, draft_deleted: false&gt; #&lt;Event id: nil, oid: "mainEvent1", name: "Main Event", short_name: "mainevent", time_zone: "PST", created_at: "2009-11-18 19:11:56", updated_at: "2009-11-18 19:11:56", draft: true, draft_origin_id: 3, draft_deleted: false&gt; #&lt;Event id: nil, oid: "bumbershoo", name: "Bumbershoot", short_name: "bumbershoot", time_zone: "PST", created_at: nil, updated_at: nil, draft: true, draft_origin_id: nil, draft_deleted: false&gt; #&lt;Notification id: nil, oid: "8P93CNEcl0", event_id: 3, name: "Penut Butter Jelly Time", url: nil, type: "Alert", priority: 10, last_displayed: "2009-11-16 19:11:54", format: nil, content: "IT'S PENUT BUTTER JELLY TIME. WHERE YOU AT? WHERE ...", image: nil, is_active: true, created_at: nil, updated_at: nil, updated_by: nil, image_file_name: nil, image_content_type: nil, image_file_size: nil, image_updated_at: nil, draft: true, draft_origin_id: nil, draft_deleted: false&gt; #&lt;Notification id: nil, oid: "8P93CNEcl0", event_id: 3, name: "Penut Butter Jelly Time", url: nil, type: "Alert", priority: 10, last_displayed: "2009-11-16 19:11:54", format: nil, content: "IT'S PENUT BUTTER JELLY TIME. WHERE YOU AT? WHERE ...", image: nil, is_active: true, created_at: "2009-11-18 19:11:57", updated_at: "2009-11-18 19:11:57", updated_by: nil, image_file_name: nil, image_content_type: nil, image_file_size: nil, image_updated_at: nil, draft: true, draft_origin_id: 3, draft_deleted: false&gt; .#&lt;Event id: nil, oid: "mainEvent1", name: "Main Event", short_name: "mainevent", time_zone: "PST", created_at: nil, updated_at: nil, draft: true, draft_origin_id: nil, draft_deleted: false&gt; #&lt;Event id: nil, oid: "bumbershoo", name: "Bumbershoot", short_name: "bumbershoot", time_zone: "PST", created_at: nil, updated_at: nil, draft: true, draft_origin_id: nil, draft_deleted: false&gt; .#&lt;Event id: nil, oid: "mainEvent1", name: "Main Event", short_name: "mainevent", time_zone: "PST", created_at: nil, updated_at: nil, draft: true, draft_origin_id: nil, draft_deleted: false&gt; .#&lt;Event id: nil, oid: "mainEvent1", name: "Main Event", short_name: "mainevent", time_zone: "PST", created_at: nil, updated_at: nil, draft: true, draft_origin_id: nil, draft_deleted: false&gt; .#&lt;Event id: nil, oid: "mainEvent1", name: "Main Event", short_name: "mainevent", time_zone: "PST", created_at: nil, updated_at: nil, draft: true, draft_origin_id: nil, draft_deleted: false&gt; </code></pre> <p>I have picked over my specs many times to see if I have a "puts foo.inspect" anywhere, and I do not. This happens for all of my rspec and cucumber tests using autotest and normally running tests individually.</p> <p>Here is my <a href="http://gist.github.com/238342" rel="nofollow">factories.rb</a> file that relates to the above output. Note: there is some minor fanciness happening in my factories.rb.</p> <p>[Update:2009-11-20] Just trying to keep this fresh, and see if someone else may have any ideas.</p> http://stackoverflow.com/questions/1460096/ruby-1-9-1-with-rspec-cant-modify-frozen-object 1 Ruby 1.9.1 with rspec "can't modify frozen object" xto 2009-09-22T13:25:52Z 2009-11-19T21:03:31Z <p>I just updated to Ruby 1.9.1 and nearly all my rspec are broken giving me a "can't modify frozen object". Even the Rspec sample code from a generate rspec_controller fails.</p> <pre><code>RuntimeError in 'DownloadsController should use DownloadsController' can't modify frozen object /usr/local/lib/ruby19/1.9.1/timeout.rb:44:in `timeout' Generated by the following code: it "should use DownloadsController" do controller.should be_an_instance_of(DownloadsController) end </code></pre> <p>Can anyone help ?</p> http://stackoverflow.com/questions/1764383/how-to-use-rspec-to-test-named-routes 0 How to use rspec to test named routes? btelles 2009-11-19T16:02:39Z 2009-11-19T17:19:20Z <p>Hi there, Given I have a named route:</p> <pre><code>map.some_route '/some_routes/:id', :controller =&gt; 'some', :action =&gt; 'other' </code></pre> <p>How do I use the routing spec file 'spec/routing/some_routing_spec.rb' to test for that named route? </p> <p>I've tried this after the "describe SomeRouteController" block and it doesn't work, I get 'undefined method "helper":</p> <pre><code>describe SomeRouteHelper, 'some routes named routes' do it 'should recognize some_route' do helper.some_route_path(23).should == '/some_routes/23' end end </code></pre> http://stackoverflow.com/questions/1759263/why-wont-ruby-debug-allow-me-to-see-local-variables-in-my-specs 0 Why won't ruby-debug allow me to see local variables in my specs? bpettichord 2009-11-18T21:40:38Z 2009-11-19T03:15:42Z <p>I am trying to use ruby-debug to debug my specs. When i do this, i am not able to access local variables. Instance variables, however, are fine. Is there a way to make this work with local variables?</p> <p>Here is an example spec:</p> <pre><code>require 'spec/autorun' describe "empty spec" do it "should be able to be debugged" do x = 'foo' @x = 'bar' debugger end end </code></pre> <p>In the debugger/irb, i can see <code>@x</code> but not <code>x</code>. <a href="http://gist.github.com/238233" rel="nofollow">Detailed output.</a></p> <p>Is this just a limitation of using ruby-debug with blocks or is this something I can make work for me?</p> <p>(In the mean time, i'm using more instance variables than i really should in my specs.)</p> http://stackoverflow.com/questions/1758730/why-are-my-cucumber-tests-keeping-the-mysql-connection-alive-after-each-scenario 0 Why are my Cucumber tests keeping the MySQL connection alive after each scenario? Bloudermilk 2009-11-18T20:12:21Z 2009-11-18T20:39:18Z <p>I was having a really odd problem in my cucumber tests that was causing scenarios that were passing individually, to fail when run with others in a feature. I deduced this was a MySQL related issue and sure enough, a co-worker came along and recommended I change my connection pool to a higher value in my database config. Lo' and behold, it worked. As happy as I was to solve this problem, I can't see why Cucumber would be keeping all of these connections alive simultaneously. As I see it, it should either keep one connection for the whole feature, or disconnect old scenarios when starting the next.</p> <p>If this is indeed a bug, how would you go about forcing the MySQL disconnect between scenarious in Cucumber?</p> <p><strong>Edit:</strong> The issue is not with Cucumber (I know, I know, it's always user error). I'm using multi-threading to simulate user input in a stubbed out RAGI handler. I realized I wasn't killing my threads at the end of the step and they weren't dying because I was only testing the first half of the handler. They were left hanging and therefore, the MySQL connections were too. I added a step called hang_up that exits the thread from cucumber and now I can set my pool back to a reasonable number.</p> http://stackoverflow.com/questions/1747840/controller-specs-in-isolation-mode-and-render-update 0 Controller specs in isolation mode and render :update brainfck 2009-11-17T10:12:19Z 2009-11-18T13:15:15Z <p>Hi folks,</p> <p>I am using RSpec for writing my controller tests/specs.</p> <p>I faced the problem, that the following code gets rendered:</p> <pre><code>render :update do |page| page['middle_content'].replace_html :partial =&gt; "admin/pages/show" end </code></pre> <p>Isolation mode is the default, isn't it?</p> <p>How can I fix this or am I doing something wrong?</p> <p>Here is for example a failing controller spec:</p> <pre><code>it "should be succesful" do xhr :delete, :destroy, :page_id =&gt; 1, :id =&gt; 1 response.should be_success end </code></pre> <p>The error message:</p> <pre><code>should be succesful Mock 'Page_1' received unexpected message :title with (no args) On line #1 of app/views/admin/pages/_administration.html.erb </code></pre> <p>The adminitration partial gets rendered in the show partial</p> <p>Best regards</p> http://stackoverflow.com/questions/1744894/rspec-undefined-method-new-error-in-activerecord-model 0 Rspec: undefined method `new' error in ActiveRecord model Lee 2009-11-16T21:13:23Z 2009-11-17T05:12:17Z <p>I know this has to be something stupid, but I keep getting the following error in one of my examples:</p> <pre><code>undefined method `new' for #&lt;Class:0x211d274&gt; </code></pre> <p>I have created a simple example to show the error:</p> <pre><code>describe LateCharge do before :each do @membership = Membership.new @location = mock_model(Location, :late_payment_rate =&gt; 10) end it "should initialize" do LateCharge.respond_to?('new').should == true @charge = LateCharge.new(@membership, @location) end end </code></pre> <p>The strange part is, when I run the example by itself, it passes. When I run it with all my examples, it fails with the following error:</p> <pre><code>NoMethodError in 'LateCharge should initialize' undefined method `new' for #&lt;Class:0x211d274&gt; /Library/Ruby/Gems/1.8/gems/activerecord-2.3.2/lib/active_record/base.rb:1964:in `method_missing_without_paginate' /Users/l33/.gem/ruby/1.8/gems/mislav-will_paginate-2.3.11/lib/will_paginate/finder.rb:170:in `method_missing' ./spec/models/late_charge_spec.rb:15: </code></pre> <p>It is failing on the line: @charge = LateCharge.new(@membership, @location)</p> <p>I do not have any problems instantiating the LateCharge object at run time or from the console.</p> <p>Anyone have any ideas?</p> http://stackoverflow.com/questions/1742461/how-to-test-email-sending-using-rspec 1 How to test email sending using Rspec? marcgg 2009-11-16T14:21:41Z 2009-11-16T16:17:42Z <p>What are the best practices and tools to test email-sending using rspec with Rails? </p> <p>For instance, how do I test that an email has been sent or what should I test to have efficient testing and acceptable coverage.</p> <p>If you guys need an example, how would I go and test this:</p> <pre><code>class UserMailer &lt; ActionMailer::Base def jobdesc_has_been_reviewed(user, title) @body[:title] = title @body[:jobdesc] = jobdesc @body[:url] = "http://" + user.account.subdomain + "." + Constants::SITE_URL + "/jobdescs/#{jobdesc.id}" end end </code></pre> http://stackoverflow.com/questions/1333413/rspec-simulating-an-xhr-get-request 1 RSpec: Simulating an XHR GET request Chris 2009-08-26T09:18:55Z 2009-11-15T09:00:03Z <p>In my RSpec tests, I need to simulate an AJAX GET request to the index action, and have been using the code as described in both the Rails docs and the RSpec book:</p> <pre><code>xhr :get, :index </code></pre> <p>This always fails though, as the test tries to load the show action (without any parameters) rather than the specified index action.</p> <p>The controller action is:</p> <pre><code>def index @contacts = Contact.all respond_to do |format| format.html format.js { render :update do |page| page.replace_html :contact_search_results, :partial =&gt; 'contacts' end } end end </code></pre> <p>The error thrown by running the spec is (showing the :show action being used):</p> <pre><code>ActionView::TemplateError in 'ContactsController as an administrator user when showing the index of contacts' as an AJAX request should render results into the contact_search_results element' contact_url failed to generate from {:action=&gt;"show", :controller=&gt;"contacts", :id=&gt;#&lt;Contact id: nil, first_name: nil, ....&gt;} </code></pre> <p>Does anyone know how I can simulate an AJAX call the index action in tests?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1733348/how-do-i-get-colour-with-windows-command-prompt-using-rspec-in-ruby 1 How do I get colour with Windows command prompt using RSpec in Ruby? Evolve 2009-11-14T05:12:56Z 2009-11-15T01:06:08Z <p>In other o/s RSpec returns nicely coloured results (red, green etc).</p> <p>However in the windows (Vista) command prompt my text output is just plain old boring white.</p> <p>How can I bring colour to my RSpec test results?</p> <p>Thanks</p> <p>Evolve</p> http://stackoverflow.com/questions/1719940/rspec-model-load-order-fixtures-and-namedscope-challenge 0 Rspec, Model load order, fixtures and named_scope challenge peterdp 2009-11-12T04:45:42Z 2009-11-14T22:34:32Z <p>I have some players and the players have a trade state. Rather than hard code trade states like "active" and "inactive" and then have to go looking for strings, I thought I'd be clever and have a separate TradeState model so that a Player has a trade_state_id (a Player can be in only one trade state at a time).</p> <p>Now, it would be a convenience to be able to get all the active players by using named scopes and then by saying "Player.active". To do that, I need to get the ID of the TradeState records that matches 'active', so I came up with this in the Player class:</p> <pre><code>named_scope :active, :conditions =&gt; {:trade_state_id =&gt; TradeState.active.first.id} </code></pre> <p>This works like a charm when tested in script/console, but it does not work when I go to test. I'm using RSpec, but I suspect that isn't pertinent. When I run the most trivial test, I get the following error:</p> <p>"Called id for nil, which would mistakenly be 4"</p> <p>As far as I can tell, the testing framework is loading and parsing the models in alphabetical order. The framework parses the named_scope call in the Player model and dutifully goes to look up the id for the first TradeState record that is active. However, that model hasn't been processed yet and isn't ready, hence the error about getting the id of nil.</p> <p>At first I thought it was because there may not have been any records in the trade_states table, so I create and save the trade_states that I needed in the before(:each) block, but that didn't work. So then I made some fixtures and tried loading them, but that didn't work.</p> <p>Does this seem plausible? Are there other explanations? How about work arounds? I could try mocking the TradeState object and I'll give that a go.</p> <p>Thanks so very much for your time.</p> http://stackoverflow.com/questions/1714521/cucumber-and-or-rspec-with-pure-java-application-using-jruby 0 Cucumber and/or RSpec with pure Java application using JRuby Darth 2009-11-11T11:13:07Z 2009-11-14T15:54:57Z <p>After doing some stuff in Ruby on Rails with Cucumber, RSpec and Ruby BDD in general, comming back to JUnit in my Java apps feels like incredible pain to me. I just love the convenience that Ruby brings into testing.</p> <p>From what I understand, it should be theoreticaly possible to use Cucumber features, or even RSpec mocking with pure Java application.</p> <p><strong>Is someone using Cucumber with Java app in production?</strong> </p> <p>Last time when I tried hacking JRuby into Java was running it on Google App Engine, which actualy worked, but increased App Engine <em>startup time</em> by about 10 seconds, which made it quite useless.</p> <p><strong>I am not talking just about web applications.</strong></p> http://stackoverflow.com/questions/1731631/has-anyone-gotten-ultisnips-on-vim-to-work-with-rails-and-or-rspec-snippets-from 0 Has anyone gotten UltiSnips on Vim to work with Rails and/or Rspec snippets from textmate? btelles 2009-11-13T20:17:47Z 2009-11-14T14:43:07Z <p>Hi there, I was able to convert the TextMate Snippets from the TextMate SVN using the provided tool "get_tm_snippets.py", but after that, I'm not sure how to add them to the context of a rails file or a spec file (I'm not even sure if what I just said made any sense, hehe). </p> <p>Anyone know how to make Rails TextMate snippets work with UltiSnips plugin for VIM?</p> http://stackoverflow.com/questions/1732253/cant-get-rspec-spork-and-debugger-to-play-nice 1 Can't get rspec, spork and debugger to play nice. btelles 2009-11-13T22:18:21Z 2009-11-13T23:00:53Z <pre><code>Given I am a dumb programmer and I am using rspec and I am using spork and I want to debug ...mmm...let's saaay, a spec for Phone. </code></pre> <p>Then, where should I put the "require 'ruby-debug'" line in order to halt processing at a particular point in the phone_spec.rb? (All I'm asking for is a big fat arrow that even a challenged programmer could see :-3 )</p> <p>I've tried many locations, and unless I didn't test them correctly, there's something weird going on:</p> <p>In spec_helper.rb at the following locations:</p> <pre><code>require 'rubygems' require 'spork' &lt;= TRIED IT HERE ENV["RAILS_ENV"] ||= 'test' Spork.prefork do require File.dirname(__FILE__) + "/../config/environment" #unless defined?(RAILS_ROOT) require 'spec/autorun' require 'spec/rails' require 'machinist/active_record' require 'faker' require 'sham' &lt;= TRIED IT HERE end Spork.each_run do require File.expand_path(File.dirname(__FILE__) + "/blueprints") &lt;= TRIED IT HERE end Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f} Spec::Runner.configure do |config| config.use_transactional_fixtures = true config.use_instantiated_fixtures = false config.fixture_path = RAILS_ROOT + '/spec/fixtures/' config.before(:all) { Sham.reset(:before_all) } config.before(:each) { Sham.reset(:before_each) } &lt;= TRIED IT HERE end </code></pre> http://stackoverflow.com/questions/1728470/rspec-testing-views-with-internationalization 1 rspec testing views with internationalization ? Cezar 2009-11-13T10:44:47Z 2009-11-13T11:57:14Z <p>Hello,</p> <p>I want to make sure I have the right meta desc/keyword and title text in my view so I want to create rspec views tests for that. Now the real challange here is how to make it work across multiple languages.</p> <p>The way I've done it is:</p> <pre><code>it "should have the right page title" do title = "some nice title here" response.should have_tag("title", title) end </code></pre> <p>So because the "requirement" is hard coded in that example, I am having a hard time figuring out how to do the same thing for all the other languages in my config/locale/.</p> <p>I'm not sure if this is the best way to do it or should I just fetch the text from the locale/lang.yml like so :</p> <pre><code>it "should have the right page title" do title = t('site.title') response.should have_tag("title", title) end </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/1722749/how-to-use-rspecs-shouldraise-with-any-kind-of-exception 1 How to use rspec's should_raise with any kind of exception? marcgg 2009-11-12T14:53:22Z 2009-11-12T15:04:49Z <p>I'd like to do something like this:</p> <pre><code>some_method.should_raise &lt;any kind of exception, I don't care&gt; </code></pre> <p>How should I do this?</p> <pre><code>some_method.should_raise exception </code></pre> <p>... doesn't work.</p> http://stackoverflow.com/questions/439828/where-do-rspec-tests-for-code-under-lib-go 1 Where do rspec tests for code under lib/ go? Readonly 2009-01-13T17:01:57Z 2009-11-11T22:01:53Z <p>I've got some code in the lib/ directory that don't really belong under controls, models or helpers. I'd like to write some rspec tests for this code, but am not sure where they should go under the spec/ directory. Is there a convention that's commonly followed?</p> http://stackoverflow.com/questions/1512140/rspec-error-on-cent-os-4-8-and-rails-2-3-4 0 Rspec error on Cent OS 4.8 and rails 2.3.4 GzMasK 2009-10-02T22:39:54Z 2009-11-11T12:38:39Z <p>When I use "spec xxx.rb" to test certain ruby code, I got this error:</p> <pre><code>Missing these required gems: webrat ~&gt; 0.4.4 You're running: ruby 1.8.7.174 at /usr/local/bin/ruby rubygems 1.3.5 at /root/.gem/ruby/1.8, /usr/local/lib/ruby/gems/1.8 Run `rake gems:install` to install the missing gems. </code></pre> <p>And I have webrat 0.5.3 gem running already. Here's my server environment:</p> <p>Operating System: CentOS 4.8 Ruby 1.8.7 i686-linux Rails 2.3.4 </p> <p>and gem list: <strong>* LOCAL GEMS *</strong></p> <pre><code>actionmailer (2.3.4, 2.3.3, 2.2.2, 2.0.2) actionpack (2.3.4, 2.3.3, 2.2.2, 2.0.2) activerecord (2.3.4, 2.3.3, 2.2.2, 2.0.2) activeresource (2.3.4, 2.3.3, 2.2.2, 2.0.2) activesupport (2.3.4, 2.3.3, 2.2.2, 2.0.2) builder (2.1.2) cgi_multipart_eof_fix (2.5.0) cucumber (0.3.104) daemons (1.0.10) diff-lcs (1.1.2) fastthread (1.0.7) gem_plugin (0.2.3) git (1.2.3, 1.2.2) mongrel (1.1.5) mongrel_cluster (1.0.5) nokogiri (1.3.3) passenger (2.2.5) polyglot (0.2.9) rack (1.0.0) radiant (0.8.1) rails (2.3.4, 2.3.3, 2.2.2, 2.0.2) rake (0.8.7, 0.8.4, 0.8.1) RedCloth (4.2.2) rmagick (2.11.1) rspec (1.2.8) rspec-rails (1.2.7.1) sqlite3-ruby (1.2.5) term-ansicolor (1.0.4) treetop (1.4.2) webrat (0.5.3) </code></pre> <p>Anyone know what's going on?</p>