1
0
mirror of https://github.com/projekteuler/projekteuler.git synced 2026-01-27 02:28:50 +01:00

Prefill translation form with old translation if possible

This commit is contained in:
2015-02-08 18:20:29 +01:00
parent 77bd96a1c2
commit 7279c8c111
2 changed files with 10 additions and 1 deletions

View File

@@ -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