Files
growstuff/spec/controllers/roles_controller_spec.rb
2016-11-26 15:55:38 +13:00

31 lines
1020 B
Ruby

## DEPRECATION NOTICE: Do not add new tests to this file!
##
## View and controller tests are deprecated in the Growstuff project.
## We no longer write new view and controller tests, but instead write
## feature tests (in spec/features) using Capybara (https://github.com/jnicklas/capybara).
## These test the full stack, behaving as a browser, and require less complicated setup
## to run. Please feel free to delete old view/controller tests as they are reimplemented
## in feature tests.
##
## If you submit a pull request containing new view or controller tests, it will not be
## merged.
require 'rails_helper'
describe RolesController do
def valid_attributes
{ "name" => "MyString" }
end
login_member(:admin_member)
describe "GET index" do
it "assigns all roles as @roles" do
role = Role.create! valid_attributes
get :index, {}
# note that admin role exists because of login_admin_member
assigns(:roles).should eq([Role.find_by(name: 'admin'), role])
end
end
end