module FakeRedis::BitopCommand

def bitwise_not(key)

def bitwise_not(key)
  if value = get(keys.first)
    value.bytes.map { |byte| ~ byte }.pack('c*')
  end
end