diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-04-30 20:54:01 -0500 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-04-30 20:54:01 -0500 |
commit | 00ea297b614a10ad045075cad6f69f2c431c2757 (patch) | |
tree | f2c9adfa55f3fe963e9ccdb72f77747903aaf0fa /tests/notification/fixtures | |
parent | 878df5f280878b465e6e42c8257ddbdb66327a92 (diff) | |
download | forums-00ea297b614a10ad045075cad6f69f2c431c2757.tar forums-00ea297b614a10ad045075cad6f69f2c431c2757.tar.gz forums-00ea297b614a10ad045075cad6f69f2c431c2757.tar.bz2 forums-00ea297b614a10ad045075cad6f69f2c431c2757.tar.xz forums-00ea297b614a10ad045075cad6f69f2c431c2757.zip |
[ticket/11413] Create test for notification conversion
PHPBB3-11413
Diffstat (limited to 'tests/notification/fixtures')
-rw-r--r-- | tests/notification/fixtures/convert.xml | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/tests/notification/fixtures/convert.xml b/tests/notification/fixtures/convert.xml new file mode 100644 index 0000000000..a244070a95 --- /dev/null +++ b/tests/notification/fixtures/convert.xml @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<dataset> + <table name="phpbb_users"> + <column>user_id</column> + <column>username</column> + <column>username_clean</column> + <column>user_notify_type</column> + <column>user_notify_pm</column> + <row> + <value>1</value> + <value>1</value> + <value>1</value> + <value>0</value> + <value>0</value> + </row> + <row> + <value>2</value> + <value>2</value> + <value>2</value> + <value>0</value> + <value>1</value> + </row> + <row> + <value>3</value> + <value>3</value> + <value>3</value> + <value>1</value> + <value>0</value> + </row> + <row> + <value>4</value> + <value>4</value> + <value>4</value> + <value>1</value> + <value>1</value> + </row> + <row> + <value>5</value> + <value>5</value> + <value>5</value> + <value>2</value> + <value>0</value> + </row> + <row> + <value>6</value> + <value>6</value> + <value>6</value> + <value>2</value> + <value>1</value> + </row> + </table> +</dataset> |