mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 17:26:21 +00:00
implementar Post.destroy
This commit is contained in:
parent
322df19d41
commit
e9a7625010
3 changed files with 28 additions and 1 deletions
|
@ -68,6 +68,8 @@ Metrics/BlockLength:
|
||||||
# Configuration parameters: CountComments.
|
# Configuration parameters: CountComments.
|
||||||
Metrics/ClassLength:
|
Metrics/ClassLength:
|
||||||
Max: 379
|
Max: 379
|
||||||
|
Exclude:
|
||||||
|
- 'app/models/post.rb'
|
||||||
|
|
||||||
# Offense count: 6
|
# Offense count: 6
|
||||||
Metrics/CyclomaticComplexity:
|
Metrics/CyclomaticComplexity:
|
||||||
|
|
|
@ -17,7 +17,7 @@ require 'jekyll/utils'
|
||||||
class Post
|
class Post
|
||||||
attr_accessor :content, :front_matter
|
attr_accessor :content, :front_matter
|
||||||
attr_reader :post, :site, :errors, :old_post, :lang, :template,
|
attr_reader :post, :site, :errors, :old_post, :lang, :template,
|
||||||
:template_fields
|
:template_fields, :collection
|
||||||
|
|
||||||
REJECT_FROM_DATA = %w[excerpt].freeze
|
REJECT_FROM_DATA = %w[excerpt].freeze
|
||||||
# datos que no tienen que terminar en el front matter
|
# datos que no tienen que terminar en el front matter
|
||||||
|
@ -369,6 +369,18 @@ class Post
|
||||||
@template ||= template_from_layout
|
@template ||= template_from_layout
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Eliminar el artículo del repositorio y de la lista de artículos del
|
||||||
|
# sitio
|
||||||
|
def destroy
|
||||||
|
FileUtils.rm_f path
|
||||||
|
|
||||||
|
site.posts_for(collection).delete_if do |post|
|
||||||
|
post.path == path
|
||||||
|
end
|
||||||
|
|
||||||
|
true
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
# Completa el front_matter a partir de las variables de otro post que
|
# Completa el front_matter a partir de las variables de otro post que
|
||||||
|
|
|
@ -28,4 +28,17 @@ class PostTest < ActiveSupport::TestCase
|
||||||
test 'Es obvio que un post recién cargado es válido' do
|
test 'Es obvio que un post recién cargado es válido' do
|
||||||
assert @post.valid?
|
assert @post.valid?
|
||||||
end
|
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
|
end
|
||||||
|
|
Loading…
Reference in a new issue