mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-03 11:05:56 +00:00
Removed fluent assertions
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
using System;
|
||||
using FluentAssertions;
|
||||
using Xunit;
|
||||
using Xunit.Extensions;
|
||||
|
||||
@@ -16,7 +15,7 @@ namespace Octokit.Tests.Helpers
|
||||
[Theory]
|
||||
public void ProperlyDetectsBlankStrings(string data, bool expected)
|
||||
{
|
||||
data.IsBlank().Should().Be(expected);
|
||||
Assert.Equal(expected, data.IsBlank());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,7 +28,7 @@ namespace Octokit.Tests.Helpers
|
||||
[Theory]
|
||||
public void ProperlyDetectsBlankStrings(string data, bool expected)
|
||||
{
|
||||
data.IsNotBlank().Should().Be(expected);
|
||||
Assert.Equal(expected, data.IsNotBlank());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -40,7 +39,7 @@ namespace Octokit.Tests.Helpers
|
||||
[InlineData("FirstName", "first_name")]
|
||||
public void ConvertsPascalToRuby(string source, string expected)
|
||||
{
|
||||
source.ToRubyCase().Should().Be(expected);
|
||||
Assert.Equal(expected, source.ToRubyCase());
|
||||
}
|
||||
|
||||
[Fact]
|
||||
|
||||
Reference in New Issue
Block a user