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

19 lines
325 B
Ruby
Raw Normal View History

2014-07-27 01:50:22 +02:00
require 'test_helper'
# Free Software groups life cycle
2015-02-15 17:10:17 +01:00
class OrgasControllerTest < ActionController::TestCase
2014-07-27 01:50:22 +02:00
setup do
2015-02-15 17:10:17 +01:00
@orga = orgas :one
2014-07-27 01:50:22 +02:00
end
test 'should get index' do
2014-07-27 01:50:22 +02:00
get :index
assert_response :success
end
test 'should get show' do
2015-02-15 17:10:17 +01:00
get :show, id: @orga
2014-07-27 01:50:22 +02:00
assert_response :success
end
end