Sha256: e55ab516fff8b34986b14037ffd7d9aa36b24e70e54549deef13c0823c516d9c

Contents?: true

Size: 850 Bytes

Versions: 3

Compression:

Stored size: 850 Bytes

Contents

require 'rails/generators'

class TestAppGenerator < Rails::Generators::Base
  source_root File.expand_path("../../../../support", __FILE__)

  def copy_test_fixtures
    copy_file "app/models/generic_content.rb"

    # Download controller
    copy_file "app/controllers/downloads_controller.rb"

    copy_file "spec/fixtures/hydrangea_fixture_mods_article1.foxml.xml" 

    # For testing Hydra::SubmissionWorkflow
    copy_file "spec/fixtures/hydra_test_generic_content.foxml.xml"
  end

  def copy_rspec_rake_task
    copy_file "lib/tasks/rspec.rake"
  end

  def run_blacklight_generator
    say_status("warning", "GENERATING BL", :yellow)       

    generate 'blacklight:install', '--devise'
  end

  def run_hydra_head_generator
    say_status("warning", "GENERATING HH", :yellow)       

    generate 'hydra:head', '-f --skip-rspec'
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
hydra-core-7.1.0 spec/support/lib/generators/test_app_generator.rb
hydra-core-7.1.0.rc2 spec/support/lib/generators/test_app_generator.rb
hydra-core-7.1.0.rc1 spec/support/lib/generators/test_app_generator.rb