Class: Rolemodel::Testing::FactoryBotGenerator

Inherits:
GeneratorBase
  • Object
show all
Defined in:
lib/generators/rolemodel/testing/factory_bot/factory_bot_generator.rb

Instance Method Summary collapse

Instance Method Details

#add_spec_filesObject



15
16
17
# File 'lib/generators/rolemodel/testing/factory_bot/factory_bot_generator.rb', line 15

def add_spec_files
  template 'support/factory_bot.rb', 'spec/support/factory_bot.rb'
end

#install_factory_bot_railsObject



8
9
10
11
12
13
# File 'lib/generators/rolemodel/testing/factory_bot/factory_bot_generator.rb', line 8

def install_factory_bot_rails
  gem_group :development, :test do
    gem 'factory_bot_rails'
  end
  run_bundle
end