ソースを参照

missing fixture

euromark 13 年 前
コミット
db4cf983e6
1 ファイル変更15 行追加0 行削除
  1. 15 0
      Test/Fixture/JsonableCommentFixture.php

+ 15 - 0
Test/Fixture/JsonableCommentFixture.php

@@ -0,0 +1,15 @@
+<?php
+
+class JsonableCommentFixture extends CakeTestFixture {
+
+	public $fields = array(
+		'id'		=> array('type' => 'integer', 'key' => 'primary'),
+		'comment'		=> array('type' => 'string', 'length' => 255, 'null' => false),
+		'url'		=> array('type' => 'string', 'length' => 255, 'null' => false),
+		'title'		=> array('type' => 'string', 'length' => 255, 'null' => false),
+		'details'		=> array('type' => 'string', 'length' => 255, 'null' => false)
+	);
+
+	public $records = array(
+	);
+}