Sha256: 46004c32bb391681c7b38710fa8352b0a47074af6f117a6d168d6c31a20286be
Contents?: true
Size: 560 Bytes
Versions: 10
Compression:
Stored size: 560 Bytes
Contents
require 'helper' class TestFakerEducation < Test::Unit::TestCase def setup @tester = Faker::Education end def test_degree_short assert @tester.degree_short.match(/.+ in .+/) end def test_degree assert @tester.degree.match(/.+ in .+/) end def test_major assert @tester.major.match(/.+ .+/) end def test_school_name assert @tester.school_name.match(/.+/) end def test_school_generic_name assert @tester.school_name.match(/.+/) end def test_school assert @tester.school.match(/.+ .+( .+)?/) end end
Version data entries
10 entries across 10 versions & 1 rubygems