Bumblebee.Examples.Web.IntegrationTests.RedditTests.given_logged_out_when_at_front_page_then_posts_should_contain_til C# (CSharp) Méthode

given_logged_out_when_at_front_page_then_posts_should_contain_til() private méthode

		public void given_logged_out_when_at_front_page_then_posts_should_contain_til()
		{
			Threaded<Session>
				.CurrentBlock<LoggedOutPage>()
				.VerifyThat(page =>
					page.Posts.Any(post =>
						post.Subreddit.Text.Contains("todayilearned"))
						.Should().BeTrue("there should be at least one til on the front page"));
		}