Index: /branches/feature-narrow-tables/t/22-author.t
===================================================================
--- /branches/feature-narrow-tables/t/22-author.t (revision 1848)
+++ /branches/feature-narrow-tables/t/22-author.t (revision 1867)
@@ -8,5 +8,5 @@
 use lib 'extlib';
 
-use Test::More tests => 60;
+use Test::More tests => 64;
 
 use MT;
@@ -63,4 +63,5 @@
 ok(eval { $author->widgets(); 1 }, 'Author obj has widgets accessor');
 ok(!defined $author->widgets, "Author's widgets are undefined by default");
+ok(!defined $author->favorite_blogs, "Author's favorite blogs are undefined by default");
 
     # same as in MT::CMS::Dashboard, but that's not necessary
@@ -73,5 +74,8 @@
     };
 
+my $fav_blogs = [1, 7];  # not actually a blog #7, but meh
+
 ok($author->widgets($default_widgets), "Author's widgets can be set");
+ok($author->favorite_blogs($fav_blogs), "Author's favorite blogs can be set");
 ok($author->save(), "Author with modified widgets can be saved");
 
@@ -80,7 +84,10 @@
 
 $author = MT::Author->load({ name => 'Chuck D' });
+
 ok($author->widgets, "Modified author has widgets");
-diag(Data::Dumper::Dumper($author->widgets));
 is_deeply($author->widgets, $default_widgets, "Author's widgets survived being saved accurately");
+
+ok($author->favorite_blogs, "Modified author has favorite blogs");
+is_deeply($author->favorite_blogs, $fav_blogs, "Author's favorite blogs survived being saved accurately");
 }
 
