public void Should_list_the_sponors_for_a_user_group()
		{
			var repository = S<IUserGroupRepository>();
			repository.Stub(groupRepository => groupRepository.GetById(Guid.NewGuid())).IgnoreArguments().Return(new UserGroup());
			var controller = new SponsorController(repository, PermisiveSecurityContext());

			controller.Index(new UserGroup())
				.AssertViewRendered()
				.ForView(ViewNames.Default)
				.ModelShouldBe<Sponsor[]>()
				.AutoMappedModelShouldBe<UpdateSponsorInput[]>()
				;
		}