fixture_path 注意!

module Test #:nodoc:
  module Unit #:nodoc:
    class TestCase #:nodoc:
      cattr_accessor :fixture_path
      class_inheritable_accessor :fixture_table_names

fixture_path は単なるcattr_accessor で宣言されているので、派生したTestCaseごとにfixture_pathを設定することはできません。なので、テストの中のどこかで設定したら他のテストには通常の設定のための fixture_path を設定する必要があるはず。まだ確認してないけど。うーん、面倒くさい。