<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>test/fixtures/list_subscriptions.json</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -224,6 +224,10 @@ module Twitter
     def list_unsubscribe(list_owner_username, slug)
       perform_delete(&quot;/#{list_owner_username}/#{slug}/subscribers.json&quot;)
     end
+    
+    def list_subscriptions(list_owner_username)
+      perform_get(&quot;/#{list_owner_username}/lists/subscriptions.json&quot;)
+    end
 
     private
       def perform_get(path, options={})</diff>
      <filename>lib/twitter/base.rb</filename>
    </modified>
    <modified>
      <diff>@@ -199,6 +199,14 @@ class BaseTest &lt; Test::Unit::TestCase
         user.screen_name.should == 'jnunemaker'
       end
       
+      should &quot;be able to view a members list subscriptions&quot; do
+        stub_get('/pengwynn/lists/subscriptions.json', 'list_subscriptions.json')
+        subscriptions = @twitter.list_subscriptions('pengwynn').lists
+        subscriptions.size.should == 1
+        subscriptions.first.full_name.should == '@chriseppstein/sass-users'
+        subscriptions.first.slug.should == 'sass-users'
+      end
+      
     end
     
     </diff>
      <filename>test/twitter/base_test.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>d076477c81966904975708ad8f9f61e1efbf7c0a</id>
    </parent>
  </parents>
  <author>
    <name>christos pappas</name>
    <email>christos.pappas@gmail.com</email>
  </author>
  <url>http://github.com/jnunemaker/twitter/commit/2273c8a4e7c5d496922fc34551b46b22d30b68aa</url>
  <id>2273c8a4e7c5d496922fc34551b46b22d30b68aa</id>
  <committed-date>2009-11-05T17:27:40-08:00</committed-date>
  <authored-date>2009-11-05T17:27:40-08:00</authored-date>
  <message>Added &quot;GET list subscriptions&quot; api method</message>
  <tree>3074b3f4b0ef4ce1d4c4fbe569de8dcbd9341519</tree>
  <committer>
    <name>christos pappas</name>
    <email>christos.pappas@gmail.com</email>
  </committer>
</commit>
