Ejemplo n.º 1
0
 void describe_combine()
 {
     it["adds the string to the path"] = () =>
     {
         using (var tmp = new TempDirectory())
         {
             var path = tmp.Combine("fred.txt");
             path.should_be(Path.Combine(tmp.PathString(), "fred.txt"));
         }
     };
 }