ensure_seeds

in spec/support/seed_helper.rb [9:23]


  def ensure_seeds
    if File.exist?(SEED_REPOSITORY_PATH)
      FileUtils.rm_r(SEED_REPOSITORY_PATH)
    end

    FileUtils.mkdir_p(SEED_REPOSITORY_PATH)

    create_bare_seeds
    create_normal_seeds
    create_mutable_seeds
    create_broken_seeds
    create_git_attributes
    create_invalid_git_attributes
  end