Sha256: fb67b6e455769c464cc7434f551990c9ac8aa404619674e04b8f3b89eb842e9b

Contents?: true

Size: 604 Bytes

Versions: 9

Compression:

Stored size: 604 Bytes

Contents

# frozen_string_literal: true

require_relative 'helper'

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

  assert_methods_are_deterministic(
    FFakerTW::Food,
    :vegetable, :fruit, :meat, :herb_or_spice
  )

  def test_vegetable
    assert_match(%r{\A[-/ íó'a-z0-9]+\z}i, FFakerTW::Food.vegetable)
  end

  def test_fruit
    assert_match(/\A[ a-z0-9]+\z/i, FFakerTW::Food.fruit)
  end

  def test_meat
    assert_match(/\A[, a-z0-9]+\z/i, FFakerTW::Food.meat)
  end

  def test_herb_or_spice
    assert_match(/\A[-, a-z0-9]+\z/i, FFakerTW::Food.herb_or_spice)
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
ffakerTW-1.8.0 test/test_food.rb
ffakerTW-1.7.0 test/test_food.rb
ffakerTW-1.6.0 test/test_food.rb
ffakerTW-1.5.0 test/test_food.rb
ffakerTW-1.4.0 test/test_food.rb
ffakerTW-1.3.0 test/test_food.rb
ffakerTW-1.2.0 test/test_food.rb
ffakerTW-1.1.0 test/test_food.rb
ffakerTW-0.1.0 test/test_food.rb