Sha256: 47596e9b8031b8c993bc0161189ebb66894b1a34214c499b2ab7009b15fd639d

Contents?: true

Size: 1.9 KB

Versions: 7

Compression:

Stored size: 1.9 KB

Contents

require 'spec_helper'
require 'generator_spec/test_case'
require File.expand_path('../../../lib/generators/paper_trail/install_generator', __FILE__)

describe PaperTrail::InstallGenerator, :type => :generator do
  include GeneratorSpec::TestCase
  destination File.expand_path('../tmp', __FILE__)

  after(:all) { prepare_destination } # cleanup the tmp directory

  describe "no options" do
    before(:all) do
      prepare_destination
      run_generator
    end
  
    it "generates a migration for creating the 'versions' table" do
      destination_root.should have_structure {
        directory 'db' do
          directory 'migrate' do
            migration 'create_versions' do
              contains 'class CreateVersions'
              contains 'def change'
              contains 'create_table :versions do |t|'
            end
          end
        end
      }
    end
  end

  describe "`--with-changes` option set to `true`" do
    before(:all) do
      prepare_destination
      run_generator %w(--with-changes)
    end

    it "generates a migration for creating the 'versions' table" do
      destination_root.should have_structure {
        directory 'db' do
          directory 'migrate' do
            migration 'create_versions' do
              contains 'class CreateVersions'
              contains 'def change'
              contains 'create_table :versions do |t|'
            end
          end
        end
      }
    end

    it "generates a migration for adding the 'object_changes' column to the 'versions' table" do
      destination_root.should have_structure {
        directory 'db' do
          directory 'migrate' do
            migration 'add_object_changes_to_versions' do
              contains 'class AddObjectChangesToVersions'
              contains 'def change'
              contains 'add_column :versions, :object_changes, :text'
            end
          end
        end
      }
    end
  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
paper_trail-3.0.9 spec/generators/install_generator_spec.rb
paper_trail-3.0.8 spec/generators/install_generator_spec.rb
paper_trail-3.0.7 spec/generators/install_generator_spec.rb
paper_trail-3.0.6 spec/generators/install_generator_spec.rb
paper_trail-3.0.5 spec/generators/install_generator_spec.rb
paper_trail-3.0.2 spec/generators/install_generator_spec.rb
paper_trail-3.0.1 spec/generators/install_generator_spec.rb