Show More
Commit Description:
fixed import error (thanks K.Siththa)
Commit Description:
fixed import error (thanks K.Siththa)
References:
File last commit:
Show/Diff file:
Action:
test/functional/contests_controller_test.rb
| 45 lines
| 1.0 KiB
| text/x-ruby
| RubyLexer
|
|
r217 | require 'test_helper' | ||
class ContestsControllerTest < ActionController::TestCase | ||||
|
r266 | test "should get index" do | ||
get :index | ||||
assert_response :success | ||||
assert_not_nil assigns(:contests) | ||||
end | ||||
test "should get new" do | ||||
get :new | ||||
assert_response :success | ||||
end | ||||
test "should create contest" do | ||||
assert_difference('Contest.count') do | ||||
post :create, :contest => { } | ||||
end | ||||
assert_redirected_to contest_path(assigns(:contest)) | ||||
end | ||||
test "should show contest" do | ||||
get :show, :id => contests(:one).to_param | ||||
assert_response :success | ||||
end | ||||
test "should get edit" do | ||||
get :edit, :id => contests(:one).to_param | ||||
assert_response :success | ||||
end | ||||
test "should update contest" do | ||||
put :update, :id => contests(:one).to_param, :contest => { } | ||||
assert_redirected_to contest_path(assigns(:contest)) | ||||
end | ||||
test "should destroy contest" do | ||||
assert_difference('Contest.count', -1) do | ||||
delete :destroy, :id => contests(:one).to_param | ||||
end | ||||
assert_redirected_to contests_path | ||||
|
r217 | end | ||
end | ||||