Exemple #1
0
 public void Should_return_environment_spesific_paths()
 {
     if (Environment.OSVersion.Platform == PlatformID.Unix)
     {
         Assert.That(() => PathExtensions.AdjustToEnvironment("/Some/file"), Is.EqualTo("/Some/file"));
     }
     else
     {
         Assert.That(() => PathExtensions.AdjustToEnvironment("/Some/file"), Is.EqualTo("/some/file"));
     }
 }