46 lines
1.0 KiB
Ruby
Executable File
46 lines
1.0 KiB
Ruby
Executable File
require 'test_helper'
|
|
|
|
class SoftwaresControllerTest < ActionController::TestCase
|
|
test "should get index" do
|
|
get :index
|
|
assert_response :success
|
|
assert_not_nil assigns(:softwares)
|
|
end
|
|
|
|
test "should get new" do
|
|
get :new
|
|
assert_response :success
|
|
end
|
|
|
|
test "should create software" do
|
|
assert_difference('Software.count') do
|
|
post :create, :software => { }
|
|
end
|
|
|
|
assert_redirected_to software_path(assigns(:software))
|
|
end
|
|
|
|
test "should show software" do
|
|
get :show, :id => softwares(:one).to_param
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get edit" do
|
|
get :edit, :id => softwares(:one).to_param
|
|
assert_response :success
|
|
end
|
|
|
|
test "should update software" do
|
|
put :update, :id => softwares(:one).to_param, :software => { }
|
|
assert_redirected_to software_path(assigns(:software))
|
|
end
|
|
|
|
test "should destroy software" do
|
|
assert_difference('Software.count', -1) do
|
|
delete :destroy, :id => softwares(:one).to_param
|
|
end
|
|
|
|
assert_redirected_to softwares_path
|
|
end
|
|
end
|