2009-07-01から1ヶ月間の記事一覧

Railsでlayoutファイルを共有する

別のcontrollerで使用されているlayoutファイルを、他のcontrollerでも使い回したい場合の対応方法。 具体的には、restful_authenticationのsession_controller.rbやusers_controller.rbにもデフォルトのlayoutを適用させたい等の場合。 layoutファイルはvie…

Restful_authenticationでUnit Testがエラーになる件について

Restful_authenticationのプラグインを入れてから、Unit Testを行うと、 undefined method `fixtures' for SessionsControllerTest:Class (NoMethodError) というエラー表示になり、かなり悩まされました。 色々と調べてみると、テストクラスはTest::Unit::T…