How to use clean_up method of ActiveMocker Package

Best Active_mocker_ruby code snippet using ActiveMocker.clean_up

generate.rb

Source:generate.rb Github

copy

Full Screen

...10 @display_errors = DisplayErrors.new(models_paths.count)11 end12 # @return self13 def call14 clean_up15 progress_init16 active_record_models_with_files.each do |model, file|17 write_file(model, file)18 progress.increment19 end20 display_errors.display_errors21 self22 end23 def active_record_models24 @active_record_models ||= active_record_models_with_files.map(&:first)25 end26 private27 attr_reader :display_errors, :progress28 def check_directory!(type)29 value = config.send(type)30 if value.nil? || value.empty?31 raise_missing_arg(type)32 end33 end34 def raise_missing_arg(type)35 raise ArgumentError, "#{type} is missing a valued value!"36 end37 def write_file(model, file)38 writer = FileWriter.new(39 model: model,40 file: file,41 display_errors: display_errors,42 config: config,43 model_names: model_names)44 writer.write!45 end46 def progress_init47 @progress = config.progress_class.create(active_record_models.count)48 end49 def model_names50 @model_names ||= active_record_models.map(&:name)51 end52 def active_record_models_with_files53 @active_record_models_with_files ||= models_paths.map do |file|54 model = constant_from(model_name_from(file))55 [model, file] if model56 end.compact57 end58 def models_paths59 @models_paths ||= Dir.glob(config.single_model_path || File.join(config.model_dir, "**/*.rb"))60 end61 def constant_from(model_name)62 constant = model_name.constantize63 return unless constant.ancestors.include?(ActiveRecord::Base)64 constant65 rescue NameError, LoadError => e66 display_errors.wrap_an_exception(e, model_name)67 nil68 end69 def model_name_from(file)70 FilePathToRubyClass.new(71 base_path: config.model_dir,72 class_path: file73 ).to_s74 end75 def config76 ActiveMocker::Config77 end78 def create_mock_dir79 FileUtils.mkdir_p(config.mock_dir) unless Dir.exist?(config.mock_dir)80 end81 def clean_up82 delete_mocks unless config.single_model_path83 end84 def delete_mocks85 FileUtils.rm Dir.glob(File.join(config.mock_dir, "/**/*_#{config.mock_append_name.underscore}.rb"))86 end87 end88end...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Active_mocker_ruby automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Most used method in

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful