2011-03-30 20:31:39 -04:00
|
|
|
Bundler.setup
|
|
|
|
require 'machinist/active_record'
|
|
|
|
require 'sham'
|
|
|
|
require 'faker'
|
2011-04-18 11:28:19 -04:00
|
|
|
require 'ransack'
|
2011-03-30 20:31:39 -04:00
|
|
|
|
2013-12-10 04:52:46 -05:00
|
|
|
Dir[File.expand_path('../../spec/{helpers,support,blueprints}/*.rb', __FILE__)]
|
|
|
|
.each do |f|
|
2011-03-30 20:31:39 -04:00
|
|
|
require f
|
|
|
|
end
|
|
|
|
|
|
|
|
Sham.define do
|
|
|
|
name { Faker::Name.name }
|
|
|
|
title { Faker::Lorem.sentence }
|
|
|
|
body { Faker::Lorem.paragraph }
|
2013-12-10 04:52:46 -05:00
|
|
|
salary { |index| 30000 + (index * 1000) }
|
2011-03-30 20:31:39 -04:00
|
|
|
tag_name { Faker::Lorem.words(3).join(' ') }
|
|
|
|
note { Faker::Lorem.words(7).join(' ') }
|
|
|
|
end
|
|
|
|
|
|
|
|
Schema.create
|