コード例 #1
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_shouting(self):
     self.assertEqual(response("WATCH OUT!"), "Whoa, chill out!")
コード例 #2
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_other_whitespace(self):
     self.assertEqual(response("\n\r \t"), "Fine. Be that way!")
コード例 #3
0
ファイル: bob_test.py プロジェクト: rvsp/python-1
 def test_talking_forcefully(self):
     self.assertEqual(response("Hi there!"), "Whatever.")
コード例 #4
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_non_letters_with_question(self):
     self.assertEqual(response(":) ?"), "Sure.")
コード例 #5
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_stating_something(self):
     self.assertEqual(response("Tom-ay-to, tom-aaaah-to."), "Whatever.")
コード例 #6
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_using_acronyms_in_regular_speech(self):
     self.assertEqual(
         response("It's OK if you don't want to go to the DMV."),
         "Whatever.")
コード例 #7
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_question_with_no_letters(self):
     self.assertEqual(response("4?"), "Sure.")
コード例 #8
0
 def test_forceful_question(self):
     self.assertEqual(
         response("WHAT THE HELL WERE YOU THINKING?"),
         "Calm down, I know what I'm doing!"
     )
コード例 #9
0
 def test_shouting_numbers(self):
     self.assertEqual(response("1, 2, 3 GO!"), "Whoa, chill out!")
コード例 #10
0
 def test_talking_forcefully(self):
     self.assertEqual(
         response("Let's go make out behind the gym!"), "Whatever.")
コード例 #11
0
 def test_using_acronyms_in_regular_speech(self):
     self.assertEqual(
         response("It's OK if you don't want to go to the DMV."),
         "Whatever.")
コード例 #12
0
 def test_asking_gibberish(self):
     self.assertEqual(response("fffbbcbeab?"), "Sure.")
コード例 #13
0
 def test_asking_a_numeric_question(self):
     self.assertEqual(response("You are, what, like 15?"), "Sure.")
コード例 #14
0
 def test_asking_a_question(self):
     self.assertEqual(
         response("Does this cryogenic chamber make me look fat?"), "Sure.")
コード例 #15
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_asking_a_question(self):
     self.assertEqual(
         response("Does this cryogenic chamber make me look fat?"), "Sure.")
コード例 #16
0
 def test_no_letters(self):
     self.assertEqual(response("1, 2, 3"), "Whatever.")
コード例 #17
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_asking_gibberish(self):
     self.assertEqual(response("fffbbcbeab?"), "Sure.")
コード例 #18
0
 def test_question_with_no_letters(self):
     self.assertEqual(response("4?"), "Sure.")
コード例 #19
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_shouting_numbers(self):
     self.assertEqual(response("1, 2, 3 GO!"), "Whoa, chill out!")
コード例 #20
0
 def test_shouting_with_special_characters(self):
     self.assertEqual(
         response("ZOMG THE %^*@#$(*^ ZOMBIES ARE COMING!!11!!1!"),
         "Whoa, chill out!")
コード例 #21
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_shouting_with_no_exclamation_mark(self):
     self.assertEqual(response("I HATE THE DMV"), "Whoa, chill out!")
コード例 #22
0
 def test_shouting_with_no_exclamation_mark(self):
     self.assertEqual(response("I HATE THE DMV"), "Whoa, chill out!")
コード例 #23
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_prolonged_silence(self):
     self.assertEqual(response("          "), "Fine. Be that way!")
コード例 #24
0
 def test_statement_containing_question_mark(self):
     self.assertEqual(
         response("Ending with ? means a question."), "Whatever.")
コード例 #25
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_starting_with_whitespace(self):
     self.assertEqual(response("         hmmmmmmm..."), "Whatever.")
コード例 #26
0
 def test_non_letters_with_question(self):
     self.assertEqual(response(":) ?"), "Sure.")
コード例 #27
0
 def test_shouting_gibberish(self):
     self.assertEqual(response("FCECDFCAAB"), "Whoa, chill out!")
コード例 #28
0
 def test_prattling_on(self):
     self.assertEqual(
         response("Wait! Hang on. Are you going to be OK?"), "Sure.")
コード例 #29
0
ファイル: bob_test.py プロジェクト: rvsp/python-1
 def test_forceful_question(self):
     self.assertEqual(response("WHAT'S GOING ON?"),
                      "Calm down, I know what I'm doing!")
コード例 #30
0
 def test_prolonged_silence(self):
     self.assertEqual(response("          "), "Fine. Be that way!")
コード例 #31
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_shouting_gibberish(self):
     self.assertEqual(response("FCECDFCAAB"), "Whoa, chill out!")
コード例 #32
0
 def test_alternate_silence(self):
     self.assertEqual(response("\t\t\t\t\t\t\t\t\t\t"),
                      "Fine. Be that way!")
コード例 #33
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_asking_a_numeric_question(self):
     self.assertEqual(response("You are, what, like 15?"), "Sure.")
コード例 #34
0
 def test_stating_something(self):
     self.assertEqual(response("Tom-ay-to, tom-aaaah-to."), "Whatever.")
コード例 #35
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_talking_forcefully(self):
     self.assertEqual(response("Let's go make out behind the gym!"),
                      "Whatever.")
コード例 #36
0
 def test_multiple_line_question(self):
     self.assertEqual(
         response("\nDoes this cryogenic chamber make me look fat?\n"
                  "No."), "Whatever.")
コード例 #37
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_forceful_question(self):
     self.assertEqual(
         response("WHAT THE HELL WERE YOU THINKING?"),
         "Calm down, I know what I'm doing!",
     )
コード例 #38
0
 def test_starting_with_whitespace(self):
     self.assertEqual(response("         hmmmmmmm..."), "Whatever.")
コード例 #39
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_no_letters(self):
     self.assertEqual(response("1, 2, 3"), "Whatever.")
コード例 #40
0
 def test_ending_with_whitespace(self):
     self.assertEqual(
         response("Okay if like my  spacebar  quite a bit?   "), "Sure.")
コード例 #41
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_shouting_with_special_characters(self):
     self.assertEqual(
         response("ZOMG THE %^*@#$(*^ ZOMBIES ARE COMING!!11!!1!"),
         "Whoa, chill out!",
     )
コード例 #42
0
 def test_other_whitespace(self):
     self.assertEqual(response("\n\r \t"), "Fine. Be that way!")
コード例 #43
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_statement_containing_question_mark(self):
     self.assertEqual(response("Ending with ? means a question."),
                      "Whatever.")
コード例 #44
0
 def test_non_question_ending_with_whitespace(self):
     self.assertEqual(
         response("This is a statement ending with whitespace      "),
         "Whatever.")
コード例 #45
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_prattling_on(self):
     self.assertEqual(response("Wait! Hang on. Are you going to be OK?"),
                      "Sure.")
コード例 #46
0
 def test_starting_with_whitespace(self):
     assert response("         hmmmmmmm...") == "Whatever."
コード例 #47
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_alternate_silence(self):
     self.assertEqual(response("\t\t\t\t\t\t\t\t\t\t"),
                      "Fine. Be that way!")
コード例 #48
0
 def test_ending_with_whitespace(self):
     assert response(
         "Okay if like my  spacebar  quite a bit?   ") == "Sure."
コード例 #49
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_multiple_line_question(self):
     self.assertEqual(
         response("\nDoes this cryogenic chamber make me look fat?\nNo."),
         "Whatever.",
     )
コード例 #50
0
 def test_other_whitespace(self):
     assert response("\n\r \t") == "Fine. Be that way!"
コード例 #51
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_ending_with_whitespace(self):
     self.assertEqual(
         response("Okay if like my  spacebar  quite a bit?   "), "Sure.")
コード例 #52
0
 def test_non_question_ending_with_whitespace(self):
     assert (response("This is a statement ending with whitespace      ") ==
             "Whatever.")
コード例 #53
0
ファイル: bob_test.py プロジェクト: paulfioravanti/exercism
 def test_non_question_ending_with_whitespace(self):
     self.assertEqual(
         response("This is a statement ending with whitespace      "),
         "Whatever.")
コード例 #54
0
 def test_shouting(self):
     self.assertEqual(response("WATCH OUT!"), "Whoa, chill out!")