Skip to content

Instantly share code, notes, and snippets.

@maltebucksch
Last active July 17, 2025 14:11
Show Gist options
  • Select an option

  • Save maltebucksch/4afebae9b1f92f5439744e21c5c33829 to your computer and use it in GitHub Desktop.

Select an option

Save maltebucksch/4afebae9b1f92f5439744e21c5c33829 to your computer and use it in GitHub Desktop.
With every new QuickBird team member this unit test must still pass:
group('QuickBird Team', () {
test('should be an awesome team', () {
final quickBirdTeamMembers = fetchTeamMembers();
final awesomeTeamMembers = quickBirdTeamMembers
.where((teamMember) =>
teamMember.isPassionate &&
teamMember.isFriendly &&
teamMember.isConstantlyImproving)
.toList();
expect(awesomeTeamMembers.length, quickBirdTeamMembers.length);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment