mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 08:46:41 +01:00
22 lines
454 B
Ruby
22 lines
454 B
Ruby
require 'test_helper'
|
|
|
|
class Admin::TranslationsControllerTest < ActionController::TestCase
|
|
include Devise::Test::ControllerHelpers
|
|
|
|
setup do
|
|
login
|
|
@translation = translations(:translation_one)
|
|
end
|
|
test "should get index" do
|
|
get :index
|
|
assert_response :success
|
|
assert_not_nil assigns(:translations)
|
|
end
|
|
|
|
test "should show translation" do
|
|
get :show, params: { id: @translation }
|
|
assert_response :success
|
|
end
|
|
|
|
end
|