module FFaker::AddressIN
def country
def country FFaker::Address.country('IN') end
def country_code
def country_code FFaker::Address.country_code('India') end
def pincode
def pincode FFaker.numerify(fetch_sample(ZIP_FORMATS)) end
def state
def state fetch_sample(STATE) end
def state_abbr
def state_abbr fetch_sample(STATE_ABBR) end
def state_and_union_territory
def state_and_union_territory fetch_sample(STATE + UNION_TERRITORY) end
def state_and_union_territory_abbr
def state_and_union_territory_abbr fetch_sample(STATE_ABBR + UNION_TERRITORY_ABBR) end
def time_zone
def time_zone 'Asia/Kolkata' end
def union_territory
def union_territory fetch_sample(UNION_TERRITORY) end
def union_territory_abbr
def union_territory_abbr fetch_sample(UNION_TERRITORY_ABBR) end