Sha256: addfb7597f2632146440816c5b384115b6034011769a3230916613a17612cb42

Contents?: true

Size: 1.11 KB

Versions: 2

Compression:

Stored size: 1.11 KB

Contents

require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')

RSpec::Generator.debug = true

require_generator :helper => [:hello, :goodbye]

module RSpec::Core
  class ExampleGroup
    include RSpec::Rails::Helper
  end
end

describe 'helper_generator' do  
  before :each do              
    setup_generator 'helper_generator' do
      tests HelperGenerator
    end    
    remove_helper 'account'    
  end

  after :each do              
    remove_helper 'account'    
  end
    
  it "should not work without an Account helper file" do            
    with_generator do |g|   
      name = 'account'
      g.run_generator [name]
      g.should_not generate_helper name
    end
  end

  it "should decorate an existing Account helper file with a 'help_me' method" do
    with_generator do |g|  
      name = :account
      create_helper :account do
        '# helper content'
      end    
      g.run_generator [:account].args
      g.should generate_helper :account do |content|
        content.should have_helper_class name do |klass|
          klass.should have_method :help_me
        end
      end
    end
  end
end



Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
generator-spec-0.4.3 spec/rspec_for_generators/helper_generator_spec.rb
generator-spec-0.4.2 spec/rspec_for_generators/helper_generator_spec.rb