agenda-libre-ruby/test/controllers/orgas_controller_test.rb

19 lines
325 B
Ruby

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