From eb52740e613006ba4b189d91b8b2e053a2921eb7 Mon Sep 17 00:00:00 2001
From: Andrew Stewart <andrew@stwrt.ca>
Date: Thu, 1 Sep 2016 14:34:00 -0700
Subject: [PATCH] Add rails-controller-testing gem to test group

This is needed to have tests that check `assigns` in Rails 5.

Unfortunately, this gem needs to be in the Gemfile for it to be picked
up by RSpec.
---
 Gemfile | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/Gemfile b/Gemfile
index 722e5d4b..5b1c989c 100644
--- a/Gemfile
+++ b/Gemfile
@@ -4,4 +4,8 @@ gem 'solidus', github: 'solidusio/solidus'
 # Provides basic authentication functionality for testing parts of your engine
 gem 'solidus_auth_devise', '~> 1.0'
 
+group :test do
+  gem 'rails-controller-testing'
+end
+
 gemspec