mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 04:21:41 +00:00
no vamos a testear esto por ahora
This commit is contained in:
parent
bb55551266
commit
5045ec8173
2 changed files with 0 additions and 64 deletions
|
@ -1,44 +0,0 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'test_helper'
|
||||
|
||||
class PostTest < ActiveSupport::TestCase
|
||||
setup do
|
||||
@user = Usuaria.find('f@kefir.red')
|
||||
@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
|
||||
|
||||
test 'El post se puede borrar' do
|
||||
path = @post.path
|
||||
|
||||
assert @post.destroy
|
||||
assert_not File.exist?(path)
|
||||
|
||||
post = @site.posts_for(@post.collection).find do |p|
|
||||
p.path == @post.path
|
||||
end
|
||||
|
||||
assert_not post
|
||||
end
|
||||
end
|
|
@ -1,20 +0,0 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'test_helper'
|
||||
|
||||
class UsuariaTest < ActiveSupport::TestCase
|
||||
setup do
|
||||
@mail = 'f@kefir.red'
|
||||
@usuaria = Usuaria.find(@mail)
|
||||
end
|
||||
|
||||
test 'La usuaria puede encontrarse por su mail' do
|
||||
assert_equal @mail, @usuaria.username
|
||||
end
|
||||
|
||||
test 'La usuaria tiene sitios' do
|
||||
@usuaria.sites.each do |s|
|
||||
assert_equal Site, s.class
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue