The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
Howto Make A Fixture Available in All Tests

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Jeremy Voorhis

Posts: 212
Nickname: jvoorhis
Registered: Oct, 2005

Jeremy Voorhis is a Rubyist in northeast Ohio.
Howto Make A Fixture Available in All Tests Posted: May 8, 2006 4:05 PM
Reply to this message Reply

This post originated from an RSS feed registered with Ruby Buzz by Jeremy Voorhis.
Original Post: Howto Make A Fixture Available in All Tests
Feed Title: JVoorhis
Feed URL: http://feeds.feedburner.com/jvoorhis
Feed Description: JVoorhis is a Rubyist in northeast Ohio. He rambles about Ruby on Rails, development practices, other frameworks such as Django, and on other days he is just full of snark.
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Jeremy Voorhis
Latest Posts From JVoorhis

Advertisement

In test/test_helper.rb:


class Test::Unit::TestCase
  def self.fixtures_with_users *names
    self.fixtures_without_users [:users, *names]
  end
  class << self; alias_method_chain :fixtures, :users end
end

Does anybody know another way to do this?

Read: Howto Make A Fixture Available in All Tests

Topic: People in Bangalore like to eat out on Sundays Previous Topic   Next Topic Topic: Rails Recipes: Face to Face

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use