X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Controller-DBIC-API.git;a=blobdiff_plain;f=t%2Frest%2Fupdate.t;fp=t%2Frest%2Fupdate.t;h=ad4c02578b643c9249dadccb7d83739e5ee8ecfd;hp=ee5837b9c341e813746101035b6c8f531eddc1f4;hb=9f9ffe56eb079d043d93776f40ecc2a54f2c142a;hpb=73517f507669cada16503d144607e42c86b65f64 diff --git a/t/rest/update.t b/t/rest/update.t index ee5837b..ad4c025 100644 --- a/t/rest/update.t +++ b/t/rest/update.t @@ -10,7 +10,7 @@ my $content_type = [ 'Content-Type', 'application/x-www-form-urlencoded' ]; use RestTest; use DBICTest; -use Test::More tests => 15; +use Test::More tests => 16; use Test::WWW::Mechanize::Catalyst 'RestTest'; use HTTP::Request::Common; use JSON::Any; @@ -71,7 +71,7 @@ my $track_update_url = "$base/api/rest/track/" . $track->id; } { - my $test_data = JSON::Any->Dump({ title => 'monkey monkey' }); + my $test_data = JSON::Any->Dump({ title => 'monkey monkey', 'cd.year' => 2009 }); my $req = POST( $track_update_url, Content => $test_data ); $req->content_type('text/x-json'); $mech->request($req); @@ -80,4 +80,5 @@ my $track_update_url = "$base/api/rest/track/" . $track->id; $track->discard_changes; is($track->title, 'monkey monkey', 'Title changed to "monkey monkey"'); + is($track->cd->year, 2009, 'related row updated'); }