no vamos a testear esto por ahora

This commit is contained in:
f 2019-07-29 15:28:09 -03:00
parent bb55551266
commit 5045ec8173
No known key found for this signature in database
GPG key ID: 2AE5A13E321F953D
2 changed files with 0 additions and 64 deletions

View file

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

View file

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