Check autocrlf in filtered text test

This commit is contained in:
Keith Dahlby 2013-10-24 14:21:17 -05:00
Родитель 0c4780b5fb
Коммит af11289180
1 изменённых файлов: 12 добавлений и 13 удалений

Просмотреть файл

@ -23,25 +23,24 @@ namespace LibGit2Sharp.Tests
}
}
[Fact]
public void CanGetBlobAsFilteredText()
[SkippableTheory]
[InlineData("false", "hey there\n")]
[InlineData("input", "hey there\n")]
[InlineData("true", "hey there\r\n")]
public void CanGetBlobAsFilteredText(string autocrlf, string expectedText)
{
using (var repo = new Repository(BareTestRepoPath))
SkipIfNotSupported(autocrlf);
var path = CloneBareTestRepo();
using (var repo = new Repository(path))
{
repo.Config.Set("core.autocrlf", autocrlf);
var blob = repo.Lookup<Blob>("a8233120f6ad708f843d861ce2b7228ec4e3dec6");
var text = blob.GetContentText(new FilteringOptions("foo.txt"));
ConfigurationEntry<bool> autocrlf = repo.Config.Get<bool>("core.autocrlf");
if (autocrlf != null && autocrlf.Value)
{
Assert.Equal("hey there\r\n", text);
}
else
{
Assert.Equal("hey there\n", text);
}
Assert.Equal(expectedText, text);
}
}