-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add materials * add subcontract_category * add docs * Update CHANGELOG.md * Update test_faker_construction.rb
- Loading branch information
1 parent
86a9fcf
commit 153321d
Showing
6 changed files
with
114 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Faker::Construction | ||
|
||
Available in future versions of faker | ||
|
||
```ruby | ||
# Random material | ||
Faker::Construction.material #=> "Wood" | ||
|
||
# Random subcontract category | ||
Faker::Construction.subcontract_category #=> "Curb & Gutter" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# frozen_string_literal: true | ||
|
||
module Faker | ||
class Construction < Base | ||
def self.material | ||
fetch('construction.materials') | ||
end | ||
|
||
def self.subcontract_category | ||
fetch('construction.subcontract_categories') | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
en: | ||
faker: | ||
construction: | ||
materials: [ | ||
"Aluminum", | ||
"Brass", | ||
"Glass", | ||
"Granite", | ||
"Plastic", | ||
"Plexiglass", | ||
"Rubber", | ||
"Steel", | ||
"Stone", | ||
"Vinyl", | ||
"Wood" | ||
] | ||
subcontract_categories: [ | ||
"Asphalt Paving", | ||
"Casework", | ||
"Construction Clean and Final Clean", | ||
"Curb & Gutter", | ||
"Doors, Frames & Hardware", | ||
"Drilled Shafts", | ||
"Drywall & Acoustical (FED)", | ||
"Drywall & Acoustical (MOB)", | ||
"EIFS", | ||
"Electrical and Fire Alarm", | ||
"Electrical", | ||
"Elevator", | ||
"Epoxy Flooring", | ||
"Exterior Signage", | ||
"Fire Protection", | ||
"Fire Sprinkler System", | ||
"Framing (Steel)", | ||
"Framing (Wood)", | ||
"Glass & Glazing", | ||
"Granite Surfaces", | ||
"HVAC", | ||
"Hard Tile & Stone", | ||
"Landscaping & Irrigation", | ||
"Marlite Panels (FED)", | ||
"Masonry & Precast", | ||
"Masonry", | ||
"Ornamental Railings", | ||
"Overhead Doors", | ||
"Painting & Vinyl Wall Covering", | ||
"Plumbing & Medical Gas", | ||
"Prefabricated Aluminum Metal Canopies", | ||
"RF Shielding", | ||
"Rebar & Wire Mesh Install", | ||
"Retaining Wall and Brick Pavers", | ||
"Roofing (Asphalt)", | ||
"Roofing (Metal)", | ||
"Site Furnishings", | ||
"Sitework & Site Utilities", | ||
"Soft Flooring and Base", | ||
"Structural & Misc Steel Erection", | ||
"Structural and Misc Steel (Fabrication)", | ||
"Temp Fencing, Decorative Fencing and Gates", | ||
"Termite Control", | ||
"Wall Protection", | ||
"Waterproofing & Caulking" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# frozen_string_literal: true | ||
|
||
require_relative 'test_helper' | ||
|
||
class TestFakerConstruction < Test::Unit::TestCase | ||
def setup | ||
Faker::Config.locale = nil | ||
end | ||
|
||
def test_material | ||
assert Faker::Construction.material.match(/[\w]+/) | ||
end | ||
|
||
def test_subcontract_category | ||
assert Faker::Construction.material.match(/[\w]+/) | ||
end | ||
|
||
def test_locales | ||
[nil, 'en'].each do |locale_name| | ||
Faker::Config.locale = locale_name | ||
assert Faker::Construction.material.is_a? String | ||
assert Faker::Construction.subcontract_category.is_a? String | ||
end | ||
end | ||
end |