diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-04-24 11:35:56 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-04-24 11:35:56 -0700 |
commit | 6587f6ba7d047ddc1686c080090afe7d53365bd4 (patch) | |
tree | ec77342668e8865aca669c9b4736e84e3077b523 /rt/t/web/user_update.t | |
parent | 47153aae5c2fc00316654e7277fccd45f72ff611 (diff) |
first pass RT4 merge, RT#13852
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"); + |