mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 08:46:41 +01:00
Prefill translation form with old translation if possible
This commit is contained in:
parent
77bd96a1c2
commit
7279c8c111
@ -17,6 +17,10 @@ class TranslationsController < ApplicationController
|
||||
# GET /translations/new
|
||||
def new
|
||||
@translation = @problem.translations.build
|
||||
if @problem.is_translated?
|
||||
@translation.title = @problem.translation.title
|
||||
@translation.content = @problem.translation.content
|
||||
end
|
||||
end
|
||||
|
||||
# POST /translations
|
||||
|
||||
@ -23,11 +23,16 @@ class TranslationsControllerTest < ActionController::TestCase
|
||||
assert_not_nil assigns(:translations)
|
||||
end
|
||||
|
||||
test "should get new" do
|
||||
test "should get new for translated problem" do
|
||||
get :new, problem_id: 1
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
test "should get new for untranslated problem" do
|
||||
get :new, problem_id: 3
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
test "should create translation" do
|
||||
assert_difference('Translation.count') do
|
||||
post :create, problem_id: 1, translation: @update
|
||||
|
||||
Loading…
Reference in New Issue
Block a user