diff options
Diffstat (limited to 'test/fixtures/files')
-rw-r--r-- | test/fixtures/files/import_subtasks.csv | 10 | ||||
-rw-r--r-- | test/fixtures/files/import_subtasks_with_relations.csv | 5 | ||||
-rw-r--r-- | test/fixtures/files/import_subtasks_with_unique_id.csv | 15 |
3 files changed, 20 insertions, 10 deletions
diff --git a/test/fixtures/files/import_subtasks.csv b/test/fixtures/files/import_subtasks.csv index 1e789514e..d00ab6cc3 100644 --- a/test/fixtures/files/import_subtasks.csv +++ b/test/fixtures/files/import_subtasks.csv @@ -1,5 +1,5 @@ -row;tracker;subject;parent -1;bug;Root; -2;bug;Child 1;1 -3;bug;Grand-child;4 -4;bug;Child 2;1 +row;tracker;subject;parent;simple relation;delayed relation +1;bug;Root;;; +2;bug;Child 1;1;1,4;1 2d +3;bug;Grand-child;4;4;4 -1d +4;bug;Child 2;1;1;1 1d diff --git a/test/fixtures/files/import_subtasks_with_relations.csv b/test/fixtures/files/import_subtasks_with_relations.csv new file mode 100644 index 000000000..af7605b34 --- /dev/null +++ b/test/fixtures/files/import_subtasks_with_relations.csv @@ -0,0 +1,5 @@ +row;tracker;subject;start;due;parent;follows +1;bug;2nd Child;2020-01-12;2020-01-20;3;2 1d +2;bug;1st Child;2020-01-01;2020-01-10;3; +3;bug;Parent;2020-01-01;2020-01-31;; +4;bug;3rd Child;2020-01-22;2020-01-31;3;1 1d diff --git a/test/fixtures/files/import_subtasks_with_unique_id.csv b/test/fixtures/files/import_subtasks_with_unique_id.csv index bd01e7298..efd5d0d82 100644 --- a/test/fixtures/files/import_subtasks_with_unique_id.csv +++ b/test/fixtures/files/import_subtasks_with_unique_id.csv @@ -1,5 +1,10 @@ -id;tracker;subject;parent -RED-I;bug;Root; -RED-II;bug;Child 1;RED-I -RED-III;bug;Grand-child;RED-IV -RED-IV;bug;Child 2;RED-I +id;tracker;subject;parent;follows +RED-IV;bug;Grand-child;RED-III; +RED-III;bug;Child 2;RED-I;RED-II 1d +RED-II;bug;Child 1;RED-I; +RED-I;bug;Root;; +BLUE-I;bug;Root;; +BLUE-II;bug;Child 1;BLUE-I; +BLUE-III;bug;Child 2;BLUE-I;BLUE-II 1d +BLUE-IV;bug;Grand-child;BLUE-III; +GREEN-II;bug;Thing;#1;#2 3d; |