-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Faker::Construction #1341
Merged
Merged
Add Faker::Construction #1341
Changes from 3 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 | ||
10.times { assert Faker::Construction.material.match(/[\w]+/) } | ||
end | ||
|
||
def test_subcontract_category | ||
10.times { assert Faker::Construction.material.match(/[\w]+/) } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think it's necessary to run this test 10 times. |
||
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 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍