1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/test/test_helper.rb

40 lines
935 B
Ruby

$: << File.join(File.dirname(__FILE__), '..', 'lib')
require 'rubygems'
require 'test/unit'
require 'activerecord'
require 'factory_girl'
require 'shoulda'
require 'mocha'
ActiveRecord::Base.establish_connection(
:adapter => 'sqlite3',
:database => File.join(File.dirname(__FILE__), 'test.db')
)
class CreateSchema < ActiveRecord::Migration
def self.up
create_table :users, :force => true do |t|
t.string :first_name
t.string :last_name
t.string :email
end
create_table :posts, :force => true do |t|
t.string :title
t.integer :author_id
end
end
end
CreateSchema.suppress_messages { CreateSchema.migrate(:up) }
class User < ActiveRecord::Base
validates_presence_of :first_name, :last_name, :email
has_many :posts, :foreign_key => 'author_id'
end
class Post < ActiveRecord::Base
validates_presence_of :title, :author_id
belongs_to :author, :class_name => 'User'
end