mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 03:46:23 +00:00
31 lines
700 B
Ruby
31 lines
700 B
Ruby
|
require 'test_helper'
|
||
|
|
||
|
class PostTest < ActiveSupport::TestCase
|
||
|
setup do
|
||
|
@user = Usuaria.find('f@kefir.red')
|
||
|
@path = File.join(Site.site_path_for(@user), 'cyber-women.com')
|
||
|
@site = @user.sites.select { |s| s.name == 'cyber-women.com' }.first
|
||
|
@post = @site.posts.sample
|
||
|
end
|
||
|
|
||
|
test 'El post no es nuevo si ya existe' do
|
||
|
assert_not @post.new?
|
||
|
end
|
||
|
|
||
|
test 'El post está traducido' do
|
||
|
assert @post.translated?
|
||
|
end
|
||
|
|
||
|
test 'El post tiene un título' do
|
||
|
assert String, @post.title.class
|
||
|
end
|
||
|
|
||
|
test 'El post tiene una fecha' do
|
||
|
assert DateTime, @post.date.class
|
||
|
end
|
||
|
|
||
|
test 'Es obvio que un post recién cargado es válido' do
|
||
|
assert @post.valid?
|
||
|
end
|
||
|
end
|