You are here: Browse Railsplugins All Fixtures
=All Fixtures
This plugin provide a replacement for the fixtures method in your tests. It provides a way to specify that every single fixture is loaded for the test with a simple easy command.
Usage could not be simpler:
===Installation
ruby script/plugin install -x http://beautifulpixel.com/svn/plugins/all_fixtures
leave out the “-x” if your project is not under subversion.
===Usage
def test_user_association assert_equal users(:quentin), blog_articles(:launch).user end
def test_comment_association assert_equal [comments(:supportive)], blog_articles(:launch).comments end
endOr to automatically have every single test use every single fixture without having to call all_fixtures in each test file do the following.
NOTE: This description has been extracted from the Plugin README and so the formatting may need updating to make browser friendly