name | about | title | labels | assignees |
---|---|---|---|---|
Bug Report |
Create a bug report |
Issue title goes here |
🐞 Issue: Bug |
A clear and concise description of what the bug is.
Describe a way to reproduce your bug. To get the Faker version, run Faker::VERSION
.
Use the reproduction script below to reproduce the issue:
# frozen_string_literal: true
require "bundler/inline"
gemfile(true) do
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'faker', :git => 'https://github.com/faker-ruby/faker.git', :branch => 'main'
gem "minitest"
end
require "minitest/autorun"
class BugTest < Minitest::Test
def test_faker
# CHANGEME - Reproduce the issue here. Here's an example:
@tester = Faker::TvShows::SiliconValley
refute_empty @tester.company
assert @tester.company == "Intersite"
end
end
A clear and concise description of what you expected to happen.
Add any other additional information about the problem here.