Sha256: bfec7b4d7fa75b3cf2bbaee1c455e7e5b11bbfe131dc7553caf3f29b769bef0c
Contents?: true
Size: 489 Bytes
Versions: 13
Compression:
Stored size: 489 Bytes
Contents
require 'yaml' require 'spec_helper' describe Rails3::Engine do it "should create an engine" do Rails3::Engine.new :my_engine do |e| e.add_locales_dir 'my_locales' e.set_orm :active_record end # Initialize the rails application init_app_railties :minimal Rails.configuration.generators.options[:rails][:orm].should == :active_record Minimal::Application.config.generators.options[:rails][:orm].should == :active_record end end
Version data entries
13 entries across 13 versions & 1 rubygems