タグ

cakephpに関するSeacolorのブックマーク (2)

  • devmoz’s blog » Blog Archive » CakePHP: Update a select box using ajax

    I noticed a lot of new comers asking this question: I want a select box to be updated using ajax when I change the current item in another select box . So this is a quick tutorial on how to do exactly that. Here is the scenario: We have a select box filled with categories, when we select a category, another select box is updated with article titles. Fair enough ? First thing to do is create the DB

  • CakePHPでフィクスチャに惑わされずにテストを書く方法

    前回挙げたチュートリアルはやってみましたか? 快適なテストライフを送ってますか? テストケースをたくさん書いていると気づくのは、フィクスチャがメンテナンスの邪魔をするということ。 フィクスチャに初期データを定義すると、それを気にしながらテストケースを作ることになります。 これがとても面倒くさいんです。 これを解消すべく、今日はモックを使ったテストケースの書き方を紹介します。 モックとは SimpleTestのモックで参考になるのは、以下の書籍です。 Webアプリケーションテスト手法 著者: 水野 貴明 (著), 石井 勇一 (著), 新藤 愛大 (著), 岸田 健一郎 (著), 荻野 淳也 (著), 安井 力 (著), 田中 慎司 (著) 出版社: 毎日コミュニケーションズ 発売日: 2008/7/25 この書籍のp154にモックについて以下のように書いてあります。 モックを使うと

  • 1