2014-07-27 01:50:22 +02:00
|
|
|
require 'test_helper'
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
# Free Software groups life cycle
|
2014-07-27 01:50:22 +02:00
|
|
|
class LugsControllerTest < ActionController::TestCase
|
|
|
|
setup do
|
|
|
|
@lug = lugs :one
|
|
|
|
end
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
test 'should get index' do
|
2014-07-27 01:50:22 +02:00
|
|
|
get :index
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
test 'should get show' do
|
2014-07-27 01:50:22 +02:00
|
|
|
get :show, id: @lug
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
end
|