Sha256: acd76839f5bbdc61c8f48490c46067f64d4f7f266cf26b9545ea082a4b0c8049
Contents?: true
Size: 1.27 KB
Versions: 17
Compression:
Stored size: 1.27 KB
Contents
require 'spec_helper' describe RailsBestPractices::Prepares::SchemaPrepare do let(:runner) { RailsBestPractices::Core::Runner.new(:prepares => RailsBestPractices::Prepares::SchemaPrepare.new) } it "should parse model attributes" do content =<<-EOF ActiveRecord::Schema.define(:version => 20110319172136) do create_table "posts", :force => true do |t| t.string "title" t.text "body", :limit => 16777215 t.datetime "created_at" t.integer "user_id" t.integer "comments_count", :default => 0 t.boolean "published", :default => false, :null => false end end EOF runner.prepare("db/schema.rb", content) model_attributes = RailsBestPractices::Prepares.model_attributes model_attributes.get_attribute_type("Post", "title").should == "string" model_attributes.get_attribute_type("Post", "body").should == "text" model_attributes.get_attribute_type("Post", "created_at").should == "datetime" model_attributes.get_attribute_type("Post", "user_id").should == "integer" model_attributes.get_attribute_type("Post", "comments_count").should == "integer" model_attributes.get_attribute_type("Post", "published").should == "boolean" end end
Version data entries
17 entries across 17 versions & 2 rubygems