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

Version Path
ffaker-1.21.0 test/test_education.rb
ffaker-1.20.0 test/test_education.rb
ffaker-1.19.0 test/test_education.rb
ffaker-1.18.0 test/test_education.rb
ffaker-1.17.0 test/test_education.rb
ffaker-1.16.2 test/test_education.rb
ffaker-1.16.1 test/test_education.rb
ffaker-1.16.0 test/test_education.rb
ffaker-1.15.0 test/test_education.rb
ffaker-1.14.0 test/test_education.rb