Exemplo n.º 1
0
 /// <summary>
 /// The GetContentSection.
 /// </summary>
 /// <param name="path">The path<see cref="string"/>.</param>
 /// <returns>The <see cref="Task{ContentSection}" />.</returns>
 public async Task <ContentSection> GetContentSection(string path)
 {
     return(await _provider.Get(path));
 }
Exemplo n.º 2
0
        public async Task Get_Returns_Model()
        {
            var result = await _provider.Get("base/test");

            Assert.That(result.Projects.Count(), Is.GreaterThan(0));
        }