mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 08:46:41 +01:00
37 lines
780 B
Ruby
37 lines
780 B
Ruby
require 'test_helper'
|
|
|
|
class TranslationsControllerTest < ActionController::TestCase
|
|
setup do
|
|
@translation = translations(:translation_one)
|
|
@update = {
|
|
title: 'New title',
|
|
content: 'This is the new content',
|
|
problem_id: 1
|
|
}
|
|
end
|
|
|
|
test "should get index" do
|
|
get :index
|
|
assert_response :success
|
|
assert_not_nil assigns(:translations)
|
|
end
|
|
|
|
test "should get new" do
|
|
get :new
|
|
assert_response :success
|
|
end
|
|
|
|
test "should create translation" do
|
|
assert_difference('Translation.count') do
|
|
post :create, translation: @update
|
|
end
|
|
|
|
assert_redirected_to translation_path(assigns(:translation))
|
|
end
|
|
|
|
test "should show translation" do
|
|
get :show, id: @translation
|
|
assert_response :success
|
|
end
|
|
end
|