this post was submitted on 26 Aug 2023
632 points (98.3% liked)

Programmer Humor

19187 readers
1299 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 36 points 1 year ago (1 children)
[โ€“] [email protected] 42 points 1 year ago (2 children)
if !strings.Contains(notification.Text, "People are") {
  t.Fatal("notification text wrong")
}

Test coverage maintained. ๐Ÿ‘ˆ๐Ÿ˜Ž๐Ÿ‘ˆ

[โ€“] [email protected] 16 points 1 year ago
if !strings.Contains(makeNotification($hot_search_word).Text, '${hot_search_word}') {
  t.Fatal("notification text wrong")
}

Wrote the test boss

[โ€“] [email protected] 4 points 1 year ago* (last edited 1 year ago)

Good work. Now explain to me why this test passed in CI but is clearly broken in production.