Sha256: eb0b34bf0102d2cbe1cc128bde3a930e525a5cfb0f03ed395098b2b0ff86dd0e
Contents?: true
Size: 611 Bytes
Versions: 2
Compression:
Stored size: 611 Bytes
Contents
# frozen_string_literal: true require 'helper' class TestAWS < Test::Unit::TestCase include DeterministicHelper assert_methods_are_deterministic(FFaker::AWS, :instance_type) def test_instance_type assert_match(/\A[a-z]+\d\.\d*[a-z]+/, FFaker::AWS.instance_type) end def test_offering_type assert_match(/\A[ a-zA-Z]+\z/i, FFaker::AWS.offering_type) end def test_instance_tenancy assert_match(/\A(?:default|dedicated|host)+\z/i, FFaker::AWS.instance_tenancy) end def test_product_description assert_match(%r{\A[ /a-zA-Z()]+\z}i, FFaker::AWS.product_description) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ffaker-2.18.0 | test/test_aws.rb |
ffaker-2.17.0 | test/test_aws.rb |