def test_cipher_four(): assert(cipher("gsrh rh zm vcznkov lu gsv zgyzhs xrksvi") == "this is an example of the atbash cipher")
def test_cipher_two(): assert cipher("wizard") == "draziw"
def test_cipher_three(): assert cipher("/r/dailyprogrammer") == "/i/wzrobkiltiznnvi"
def test_wizard(self): self.assertEqual('draziw', atbash.cipher('wizard'))
def test_cipher_one(): assert cipher("foobar") == "ullyzi"
def test_sentence(self): self.assertEqual( 'gsrh rh zm vcznkov lu gsv zgyzhs xrksvi', atbash.cipher('this is an example of the atbash cipher'))
def test_foobar(self): self.assertEqual('ullyzi', atbash.cipher('foobar'))
def test_dailyprogrammer(self): self.assertEqual('/i/wzrobkiltiznnvi', atbash.cipher('/r/dailyprogrammer'))
def test_cipher_four(): assert (cipher("gsrh rh zm vcznkov lu gsv zgyzhs xrksvi") == "this is an example of the atbash cipher")