faker-ruby / faker

A library for generating fake data such as names, addresses, and phone numbers.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Issue title goes here

SAMRIDHISAINII opened this issue · comments

Describe the bug

A clear and concise description of what the bug is.

To Reproduce

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

Expected behavior

A clear and concise description of what you expected to happen.

Additional context

Add any other additional information about the problem here.

@SAMRIDHISAINII this seems to be a error. I'm going to close this because it's just an open issue with our issue template. If you have any real issues to report, please open an issue with the details provided in the template. Thank you!