module FFaker::AddressUK

def country

def country
  fetch_sample(COUNTRY)
end

def county

def county
  fetch_sample(COUNTY)
end

def postcode

def postcode
  FFaker.bothify(fetch_sample(POSTCODE)).upcase
end