mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
15 lines
287 B
C#
15 lines
287 B
C#
using LocalModels;
|
|
|
|
public class AssignmentMarkdownTests
|
|
{
|
|
[Test]
|
|
public void TestCanParseAssignmentSettings()
|
|
{
|
|
var assignment = new LocalAssignment()
|
|
{
|
|
Name="test assignment",
|
|
Description ="here is the description",
|
|
// LockAtDueDate = false
|
|
};
|
|
}
|
|
} |