Sha256: 4956207c89f9756cb3ee46f232e5cf35f77a247d00cda5391f54a91b19f42394

Contents?: true

Size: 399 Bytes

Versions: 1

Compression:

Stored size: 399 Bytes

Contents

# frozen_string_literal: true

require_relative 'helper'

class TestFakerJobKR < Test::Unit::TestCase
  include DeterministicHelper

  assert_methods_are_deterministic(FFakerTW::JobKR, :title)

  def setup
    @tester = FFakerTW::JobKR
  end

  def test_title
    assert_greater_than_or_equal_to @tester.title.length, 1
  end

  def test_nouns
    assert_kind_of Array, @tester::JOB_NOUNS
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ffakerTW-0.1.0 test/test_job_kr.rb