module FFaker::AddressIT
def city
def city fetch_sample(CITY) end
def full_address
def full_address %(#{street_address}#{fetch_sample(SEP)}#{postal_code} #{fetch_sample(CITY)}) end
def postal_code
def postal_code FFaker.numerify(fetch_sample(POSTAL_CODE_FORMATS)) end
def region
def region fetch_sample(REGION) end
def street_address
def street_address FFaker.numerify(fetch_sample(NUM)) + fetch_sample(SEP) + fetch_sample(TYPE) + ' ' + FFaker::NameIT.name end