aboutsummaryrefslogtreecommitdiffstats
path: root/spec/support/devise.rb
diff options
context:
space:
mode:
authorVlatka Pavisic2017-03-22 15:34:05 +0100
committerVlatka Pavisic2017-03-22 15:34:11 +0100
commitb9b8abc826fb542c1b4f65a796e2381f56cfe411 (patch)
treeb2e0d099f5da61f900275f3407d1bf3eee675218 /spec/support/devise.rb
parentaf71d3fbbf93cb4da1d2ebd1a1b705019f6cddb5 (diff)
downloadchouette-core-b9b8abc826fb542c1b4f65a796e2381f56cfe411.tar.bz2
Refs #2902 : Referential#(un)archive policy check
Diffstat (limited to 'spec/support/devise.rb')
-rw-r--r--spec/support/devise.rb10
1 files changed, 7 insertions, 3 deletions
diff --git a/spec/support/devise.rb b/spec/support/devise.rb
index f692edab8..0e3ceefac 100644
--- a/spec/support/devise.rb
+++ b/spec/support/devise.rb
@@ -39,9 +39,13 @@ module DeviseControllerHelper
before(:each) do
@request.env["devise.mapping"] = Devise.mappings[:user]
organisation = Organisation.where(:code => "first").first_or_create(attributes_for(:organisation))
- user = create(:user, :organisation => organisation,
- :permissions => ['routes.create', 'routes.edit', 'routes.destroy', 'journey_patterns.create', 'journey_patterns.edit', 'journey_patterns.destroy'])
- sign_in user
+ @user = create(:user, :organisation => organisation,
+ :permissions => ['routes.create', 'routes.edit', 'routes.destroy', 'journey_patterns.create', 'journey_patterns.edit', 'journey_patterns.destroy',
+ 'vehicle_journeys.create', 'vehicle_journeys.edit', 'vehicle_journeys.destroy', 'time_tables.create', 'time_tables.edit', 'time_tables.destroy',
+ 'footnotes.edit', 'footnotes.create', 'footnotes.destroy', 'routing_constraint_zones.create', 'routing_constraint_zones.edit', 'routing_constraint_zones.destroy',
+ 'access_points.create', 'access_points.edit', 'access_points.destroy', 'access_links.create', 'access_links.edit', 'access_links.destroy',
+ 'connection_links.create', 'connection_links.edit', 'connection_links.destroy', 'route_sections.create', 'route_sections.edit', 'route_sections.destroy'])
+ sign_in @user
end
end
end