diff options
Diffstat (limited to 'rt/t/web/user_update.t')
-rw-r--r-- | rt/t/web/user_update.t | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/rt/t/web/user_update.t b/rt/t/web/user_update.t new file mode 100644 index 000000000..dc908fc10 --- /dev/null +++ b/rt/t/web/user_update.t @@ -0,0 +1,32 @@ +#!/usr/bin/perl +use strict; +use warnings; +use utf8; +use RT::Test tests => 9; + +my ( $url, $m ) = RT::Test->started_ok; +ok( $m->login(), 'logged in' ); + +$m->follow_link_ok({text => 'About me'}); +$m->form_with_fields('Lang'); +$m->field(Lang => 'ja'); +$m->submit; + +$m->text_contains("Lang changed from (no value) to 'ja'"); + +# we only changed one field, and it wasn't the default, so this feedback is +# spurious and annoying +$m->content_lacks("That is already the current value"); + +# change back to English +$m->form_with_fields('Lang'); +$m->field(Lang => 'en_us'); +$m->submit; + +# This message shows up in Japanese +# $m->text_contains("Lang changed from 'ja' to 'en_us'"); +$m->text_contains("Langは「'ja'」から「'en_us'」に変更されました"); + +# another spurious update +$m->content_lacks("That is already the current value"); + |