Nicolae Claudius
13 years ago
6 changed files with 45 additions and 22 deletions
@ -0,0 +1,15 @@
|
||||
FactoryGirl.define do |
||||
|
||||
factory :user do |
||||
|
||||
end |
||||
|
||||
factory :domain do |
||||
|
||||
end |
||||
|
||||
factory :record do |
||||
|
||||
end |
||||
|
||||
end |
@ -0,0 +1,22 @@
|
||||
require 'rubygems' |
||||
require 'spork' |
||||
|
||||
# Loading more in this block will cause your tests to run faster. However, |
||||
# if you change any configuration or code from libraries loaded here, you'll |
||||
# need to restart spork for it take effect. |
||||
Spork.prefork do |
||||
ENV["RAILS_ENV"] ||= 'test' |
||||
require File.expand_path("../../config/environment", __FILE__) |
||||
require 'rspec/rails' |
||||
|
||||
RSpec.configure do |config| |
||||
config.mock_with :rspec |
||||
config.use_transactional_fixtures = true |
||||
end |
||||
end |
||||
|
||||
Spork.each_run do |
||||
# Requires supporting ruby files with custom matchers and macros, etc, |
||||
# in spec/support/ and its subdirectories. |
||||
Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f} |
||||
end |
Loading…
Reference in new issue