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

Rename Problem to Translation

This commit is contained in:
2014-12-13 17:00:00 +01:00
parent 94087d31d2
commit e13b82ad1f
34 changed files with 244 additions and 239 deletions

View File

@@ -1,34 +0,0 @@
require 'test_helper'
class ProblemTest < ActiveSupport::TestCase
test "should not save problem without title" do
problem = Problem.new(content: 'This is some content')
assert_not problem.save
end
test "should not save problem without content" do
problem = Problem.new(title: 'Problem title')
assert_not problem.save
end
test "should not save problem with duplicate title" do
problem = Problem.new(
title: problems(:one).title,
content: 'This is some content'
)
assert_not problem.save
end
test "should save correct problem" do
problem = Problem.new(
title: 'A unique title',
content: 'Some content'
)
assert problem.save
end
test "should have correct original url" do
first = Problem.first
assert_equal "https://projecteuler.net/problem=#{first.id}", first.original_url
end
end