Changeset 9787
- Timestamp:
- 06/23/08 10:08:01 (5 years ago)
- Files:
-
- branches/1.1/lib/plugins/sfPropelPlugin/test/functional/fixtures/config/schema.xml (modified) (1 diff)
- branches/1.1/lib/plugins/sfPropelPlugin/test/unit/fixtures/new_schema.yml (modified) (1 diff)
- branches/1.1/lib/plugins/sfPropelPlugin/test/unit/fixtures/schema.xml (modified) (1 diff)
- branches/1.1/lib/plugins/sfPropelPlugin/test/unit/fixtures/schema.yml (modified) (1 diff)
- branches/1.1/lib/plugins/sfPropelPlugin/test/unit/sfPropelDatabaseSchemaTest.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/plugins/sfPropelPlugin/test/functional/fixtures/config/schema.xml
r8807 r9787 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 <database name="propel" defaultIdMethod="native" noXsd="true"package="lib.model">2 <database name="propel" defaultIdMethod="native" package="lib.model"> 3 3 4 4 <table name="article"> branches/1.1/lib/plugins/sfPropelPlugin/test/unit/fixtures/new_schema.yml
r9773 r9787 1 1 connection: propel 2 noXsd: 'false'3 2 defaultIdMethod: none 4 3 package: lib.model branches/1.1/lib/plugins/sfPropelPlugin/test/unit/fixtures/schema.xml
r9457 r9787 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 <database name="propel" noXsd="false"defaultIdMethod="none" package="lib.model">2 <database name="propel" defaultIdMethod="none" package="lib.model"> 3 3 4 4 <table name="ab_group" phpName="Group" package="foo.bar.lib.model" isI18N="true" i18nTable="ab_group_i18n"> branches/1.1/lib/plugins/sfPropelPlugin/test/unit/fixtures/schema.yml
r9773 r9787 1 1 propel: 2 _attributes: { noXsd: 'false',defaultIdMethod: none, package: lib.model }2 _attributes: { defaultIdMethod: none, package: lib.model } 3 3 ab_group: 4 4 _attributes: { phpName: Group, package: foo.bar.lib.model } branches/1.1/lib/plugins/sfPropelPlugin/test/unit/sfPropelDatabaseSchemaTest.php
r8987 r9787 48 48 require_once(dirname(__FILE__).'/../../../../yaml/sfYaml.class.php'); 49 49 50 $t = new my_lime_test(30 2, new lime_output_color());50 $t = new my_lime_test(300, new lime_output_color()); 51 51 52 52 $t->diag('Classical YAML to XML conversion');