public void ShouldGetAllOtherFeeds()
        {
            IStore store = CreateStubStore();

            Repository repository = new Repository(store, ResourceIdToStoreIdConverter.Default);
            repository.OnFeedMappingsChanged(null, new FeedMappingsChangedEventArgs(ResourceIdValue, StoreIdValue));
            IRepresentation representation = repository.GetFeed(new ResourceId("archive"));

            Output output = Output.For(representation);

            Assert.AreEqual(StreamBackedRepresentation.CreateArchiveFeed().GetContents(), output.EntityBody);
        }