Sha256: ac433ca5c5944d6d392f65fa16a308317bf860a3e4ccbc1d114568d108c44b9b
Contents?: true
Size: 684 Bytes
Versions: 10
Compression:
Stored size: 684 Bytes
Contents
# encoding: utf-8 # => author: PapePathe github.com/PapePathe # => email: pathe.sene@gmail.com require 'helper' class TestAddressSn < Test::Unit::TestCase include DeterministicHelper assert_methods_are_deterministic( FFaker::AddressSN, :region, :departement, :arrondissement ) def setup @subject = FFaker::AddressSN end def test_region assert FFaker::AddressSN::REGIONS.include?(FFaker::AddressSN.region) end def test_departement assert FFaker::AddressSN::DEPARTEMENTS.include?(FFaker::AddressSN.departement) end def test_arrondissement assert FFaker::AddressSN::ARRONDISSEMENTS.include?(FFaker::AddressSN.arrondissement) end end
Version data entries
10 entries across 10 versions & 1 rubygems