diff options
Diffstat (limited to 'lib/JWebmail/Model/ReadMails/MockJSON.pm')
-rw-r--r-- | lib/JWebmail/Model/ReadMails/MockJSON.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/JWebmail/Model/ReadMails/MockJSON.pm b/lib/JWebmail/Model/ReadMails/MockJSON.pm index bb105d1..8918040 100644 --- a/lib/JWebmail/Model/ReadMails/MockJSON.pm +++ b/lib/JWebmail/Model/ReadMails/MockJSON.pm @@ -6,17 +6,17 @@ use utf8; use List::Util 'sum'; +use Mojo::JSON qw(decode_json); + use Role::Tiny::With; -use Mojo::JSON qw(decode_json); +use namespace::clean; use constant { VALID_USER => 'mockjson@example.com', VALID_PW => 'vwxyz', }; -use namespace::clean; - with 'JWebmail::Model::ReadMails::Role'; |