diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2010-03-26 16:41:19 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2010-03-26 16:41:19 +0100 |
commit | af654814f63e05be5236075f06943062be007072 (patch) | |
tree | 18b72e7817d2b73a78e93573ab3410539851ec10 /tests/dbal/fixtures | |
parent | 94bc65e2038407b8b6d2b23c195b232e07208d22 (diff) | |
download | forums-af654814f63e05be5236075f06943062be007072.tar forums-af654814f63e05be5236075f06943062be007072.tar.gz forums-af654814f63e05be5236075f06943062be007072.tar.bz2 forums-af654814f63e05be5236075f06943062be007072.tar.xz forums-af654814f63e05be5236075f06943062be007072.zip |
[feature/dbal-tests] Added tests for dbal fetchrow and fetchfield.
Diffstat (limited to 'tests/dbal/fixtures')
-rw-r--r-- | tests/dbal/fixtures/two_users.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/dbal/fixtures/two_users.xml b/tests/dbal/fixtures/two_users.xml new file mode 100644 index 0000000000..255f061bd4 --- /dev/null +++ b/tests/dbal/fixtures/two_users.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8" ?>
+<dataset>
+ <table name="phpbb_users">
+ <column>user_id</column>
+ <column>username_clean</column>
+ <row>
+ <value>1</value>
+ <value>barfoo</value>
+ </row>
+ <row>
+ <value>2</value>
+ <value>foobar</value>
+ </row>
+ </table>
+</dataset>
|