Sha256: a8d1599f16413170981e8b88e62aa1ef24f726e67acc39dddf5223cbb447dc29
Contents?: true
Size: 1.6 KB
Versions: 318
Compression:
Stored size: 1.6 KB
Contents
using Base.Test include("bob.jl") questions = ( "Does this cryogenic chamber make me look fat?", "You are, what, like 15?", "fffbbcbeab?", "4?", ":) ?", "Wait! Hang on. Are you going to be OK?", "Okay if like my spacebar quite a bit? ", ) yells = ( "WATCH OUT!", "FCECDFCAAB", "WHAT THE HELL WERE YOU THINKING?", "1, 2, 3 GO!", "ZOMG THE %^*@#\$(*^ ZOMBIES ARE COMING!!11!!1!", "I HATE YOU", ) silences = ( "", " ", "\t\t\t\t\t\t\t\t\t\t", "\n\r \t", ) miscs = ( "Tom-ay-to, tom-aaaah-to.", "Let's go make out behind the gym!", "It's OK if you don't want to go to the DMV.", "1, 2, 3", "Ending with ? means a question.", "\nDoes this cryogenic chamber make me look fat?\nno", " hmmmmmmm...", "This is a statement ending with whitespace ", ) response = Dict( :question => "Sure.", :yelling => "Whoa, chill out!", :silence => "Fine. Be that way!", :misc => "Whatever." ) @testset "questions" begin @testset "$question" for question in questions @test bob(question) == response[:question] end end @testset "yelling" begin @testset "$yell" for yell in yells @test bob(yell) == response[:yelling] end end @testset "silence" begin @testset "$silence" for silence in silences @test bob(silence) == response[:silence] end end @testset "misc" begin @testset "$misc" for misc in miscs @test bob(misc) == response[:misc] end end
Version data entries
318 entries across 318 versions & 1 rubygems