From fdb9243d2143d5d1497b0b0fa1af8c9f4593f02e Mon Sep 17 00:00:00 2001 From: Hauke Klement Date: Tue, 24 Feb 2015 09:58:48 +0100 Subject: [PATCH] don't use ActiveRecord fixtures --- spec/fixtures/upload.rb | 1 - spec/rails_helper.rb | 3 --- 2 files changed, 4 deletions(-) delete mode 100644 spec/fixtures/upload.rb diff --git a/spec/fixtures/upload.rb b/spec/fixtures/upload.rb deleted file mode 100644 index 2f330106..00000000 --- a/spec/fixtures/upload.rb +++ /dev/null @@ -1 +0,0 @@ -puts 'Hello World' diff --git a/spec/rails_helper.rb b/spec/rails_helper.rb index 0fd3ca20..faf011d2 100644 --- a/spec/rails_helper.rb +++ b/spec/rails_helper.rb @@ -19,9 +19,6 @@ Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f } ActiveRecord::Migration.maintain_test_schema! RSpec.configure do |config| - # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures - config.fixture_path = "#{::Rails.root}/spec/fixtures" - config.include(Authentication, type: :feature) config.include(WaitForAjax, type: :feature) config.include(Sorcery::TestHelpers::Rails::Controller, type: :controller)