Showing 1 changed files with 12 additions and 0 deletions
+12
xt/user.t
... ...
@@ -1,4 +1,6 @@
1 1
 use Test::More 'no_plan';
2
+use strict;
3
+use warnings;
2 4
 
3 5
 use FindBin;
4 6
 use utf8;
... ...
@@ -334,6 +336,16 @@ note 'User Account Settings';
334 336
       # Rename project
335 337
       $t->post_ok('/kimoto1/t2/settings?op=rename-project', form => {'to-project' => 't3'});
336 338
       $t->content_like(qr/Repository name is renamed to t3/);
339
+      $t->post_ok('/kimoto1/t3/settings?op=rename-project', form => {'to-project' => 't2'});
340
+      $t->content_like(qr/Repository name is renamed to t2/);
341
+    }
342
+    
343
+    note 'Change description';
344
+    {
345
+      # Change description
346
+      $t->post_ok("/kimoto1/t1/settings?op=change-description", form => {description => 'あああ'});
347
+      $t->content_like(qr/Description is saved/);
348
+      #$t->content_like(qr/あああ/);
337 349
     }
338 350
   }
339 351
 }