Skip to content

Commit

Permalink
IssueUpdateTests
Browse files Browse the repository at this point in the history
  • Loading branch information
thomhurst committed Jan 25, 2025
1 parent fc283af commit 3f7a2e1
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Octokit.Tests/Models/IssueUpdateTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
using Xunit;

namespace Octokit.Tests.Models
{
public class IssueUpdateTests
{
[Fact]
public void Can_Initialise_With_Label()
{
_ = new IssueUpdate
{
Labels = { "Foo" }
};
}

[Fact]
public void Can_Initialise_With_Assignee()
{
_ = new IssueUpdate
{
Assignees = { "Foo" }
};
}
}
}

0 comments on commit 3f7a2e1

Please sign in to comment.