-
-
Save maltebucksch/d43ffc0af1170ef230b94c0bf0fe5630 to your computer and use it in GitHub Desktop.
fun testTeamIsAwesome() { | |
val quickBirdTeamMembers = fetchTeamMembers() | |
val awesomeTeamMembers = quickBirdTeamMembers.filter { teamMember -> | |
teamMember.isPassionate && | |
teamMember.isFriendly && | |
teamMember.isConstantlyImproving | |
} | |
assertEquals(quickBirdTeamMembers.size, awesomeTeamMembers.size) | |
} |
This is a very important test I must say. I am enjoying the sense of humour in how your team organise, package and convey values. I have read the article about Gordon the smith, it is such captivating and all-encompassing of what a modern team should be.
About the team test, a good question is why add a team member that does not have all the three qualities - passionate, friendly and constantly improving? Given that we may not be able to tell immediately if someone possesses all these qualities, it suffices to say that there is a possibility for the test to fail. I would like to implement a notification pipeline to notify the team lead whenever the test fails as this is a critical situation. It should not fail for long, every fix has to be done within seconds to remedy the situation.
I understand it's just a fun form of your values representing but... an empty team will be still awesome. Am I wrong? ๐
What about something like this?
Nice implementation of all of the surroundings! :-D makes sense from a coding point of view. But it seems a bit too complicated for conveying the message in a simple way inside the job posting. But I guess that wasn't your goal, so --> nice input ๐.
I would like to implement a notification pipeline to notify the team lead whenever the test fails as this is a critical situation. It should not fail for long, every fix has to be done within seconds to remedy the situation.
Makes sense! Might put too much pressure on the team because they have to be awesome every single minute. Everybody has a bad unproductive morning from time to time, and that's ok. So let's implement that pipeline but run it only once per week maybe? :)
I understand it's just a fun form of your values representing but... an empty team will be still awesome. Am I wrong? ๐
Valid point. Leads to a philosophical discussion. Is a non-existent team awesome? ๐ค Hard to say. I'd also be inclined to think that a non-existent team doesn't add any value to the world, and is therefore not awesome. Might be a reason to adapt the test.
Hi! fetchTeamMembers()
should be a suspend
function, and you are not in a coroutine scope ๐ค . So I think that test will not work ๐
What about something like this?