Skip to content

Commit

Permalink
Add unit test for #342.
Browse files Browse the repository at this point in the history
  • Loading branch information
bchavez committed Dec 12, 2020
1 parent 9955cea commit c429ae9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Source/Bogus.Tests/GitHubIssues/Issue342.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using System;
using Bogus.DataSets;
using FluentAssertions;
using Xunit;

namespace Bogus.Tests.GitHubIssues
{
public class Issue342 : SeededTest
{
[Fact]
public void more_realistic_pt_BR_city_name()
{
var a = new Address("pt_BR");
a.City().Should().Be("Pelotas");
}
}
}

0 comments on commit c429ae9

Please sign in to comment.