Example #1
0
 public void FantasyBird_Dovekie()
 {
     FantasyBirds.Dovekie <string, string, string, string, string>(prefix => str => prefix + str)
         (x => x.ToUpper())
         ("fantasy-")
         (x => x.ToLower())
         ("BIRDS")
     .ShouldBe("FANTASY-birds");
 }