require 'test_helper' # Free Software groups life cycle class OrgasControllerTest < ActionController::TestCase setup do @orga = orgas :one end test 'should get index' do get :index assert_response :success end test 'should get show' do get :show, id: @orga assert_response :success end end