add shel
This commit is contained in:
@@ -104,7 +104,7 @@ public class RosterGeneratorTests
|
||||
[Fact]
|
||||
public void SomeStaffAreAlsoParents()
|
||||
{
|
||||
var roster = Fixtures.Generate(Fixtures.Classrooms(4));
|
||||
var roster = Fixtures.Generate(Fixtures.VanillaMap());
|
||||
Assert.Contains(roster.People, person => person.IsStaff && person.IsParent);
|
||||
}
|
||||
|
||||
@@ -122,7 +122,9 @@ public class RosterGeneratorTests
|
||||
Assert.Equal(11, demand.Classes.Count);
|
||||
Assert.Equal(11 * 16, demand.Seats.Count);
|
||||
Assert.DoesNotContain(demand.Classes, schoolClass => schoolClass.RoomId == "computer-lab");
|
||||
Assert.Contains(demand.Staff, opening => opening.RoomId == "computer-lab" && opening.Position == "Teacher");
|
||||
Assert.DoesNotContain(demand.Staff, opening => opening.Position == "Teacher");
|
||||
Assert.DoesNotContain(demand.Staff, opening => opening.RoomId == "computer-lab");
|
||||
Assert.Contains(demand.Staff, opening => opening.RoomId == "library" && opening.Position == "Librarian");
|
||||
}
|
||||
|
||||
[Fact]
|
||||
|
||||
Reference in New Issue
Block a user