Sha256: 5929cce65b4ec17668bf9690ab619f6e6847d72e873e760db115ac27b1b28084
Contents?: true
Size: 510 Bytes
Versions: 1
Compression:
Stored size: 510 Bytes
Contents
# frozen_string_literal: true require_relative '../../test_helper' class TestFakerVerb < Test::Unit::TestCase def setup @tester = Faker::Verb end def test_base assert @tester.base.match(/\w+/) end def test_past assert @tester.past.match(/\w+/) end def test_past_participle assert @tester.past_participle.match(/\w+/) end def test_simple_present assert @tester.simple_present.match(/\w+/) end def test_ing_form assert @tester.ing_form.match(/\w+/) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
logstash-output-scalyr-0.1.7 | vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_verb.rb |