OSDN Git Service

fix: any
[pettanr/pettanr.git] / spec / models / comic_spec.rb
index 78a6f7a..755c7d0 100644 (file)
@@ -4,7 +4,9 @@ require 'spec_helper'
 
 describe Comic do
   before do
+    SpeechBalloonTemplate.delete_all
     @admin = FactoryGirl.create :admin
+    @demand_user = FactoryGirl.create :demand_user
     @sp = FactoryGirl.create :system_picture
     @lg = FactoryGirl.create :license_group
     @license = FactoryGirl.create :license, :license_group_id => @lg.id, :system_picture_id => @sp.id
@@ -44,6 +46,7 @@ describe Comic do
         @comic.should_not be_valid
       end
     end
+    
     context 'visibleを検証するとき' do
       it 'nullなら失敗する' do
         @comic.visible = nil
@@ -58,6 +61,46 @@ describe Comic do
         @comic.should_not be_valid
       end
     end
+    
+    context 'author_idを検証するとき' do
+      it 'nullなら失敗する' do
+        @comic.author_id = nil
+        @comic.should_not be_valid
+      end
+      it '数値でなければ失敗する' do
+        @comic.author_id = 'a'
+        @comic.should_not be_valid
+      end
+      it '存在する作家でなければ失敗する' do
+        @comic.author_id = 0
+        @comic.should_not be_valid
+      end
+    end
+    
+  end
+  
+  describe '文字コード検証に於いて' do
+    before do
+      @comic = FactoryGirl.build :comic, :author_id => @author.id
+    end
+    
+    context 'titleを検証するとき' do
+      it 'Shift JISなら失敗する' do
+        @comic.title = "\x83G\x83r\x83]\x83D"
+        lambda{
+          @comic.valid_encode
+        }.should raise_error(Pettanr::BadRequest)
+      end
+    end
+    
+    context 'descriptionを検証するとき' do
+      it 'Shift JISなら失敗する' do
+        @comic.description = "\x83G\x83r\x83]\x83D"
+        lambda{
+          @comic.valid_encode
+        }.should raise_error(Pettanr::BadRequest)
+      end
+    end
   end
   
   describe 'デフォルト値補充に於いて' do
@@ -76,18 +119,195 @@ describe Comic do
     end
   end
   
+  describe 'ロールリストからの作家取得に於いて' do
+    context 'ロールがユーザのとき' do
+      it 'ユーザから作家を取得して、それを返す' do
+        r = Comic.get_author_from_roles([@user])
+        r.should eq @author
+      end
+    end
+    context 'ロールが作家のとき' do
+      it '作家を返す' do
+        r = Comic.get_author_from_roles([@author])
+        r.should eq @author
+      end
+    end
+    context 'ロールが絵師のとき' do
+      it '絵師から作家を取得できれば、それをを返す' do
+        r = Comic.get_author_from_roles([@artist])
+        r.should eq @author
+      end
+      it '絵師から作家を取得できないときnilを返す' do
+        @artist.author_id = nil
+        @artist.save!
+        r = Comic.get_author_from_roles([@artist])
+        r.should be_nil
+      end
+    end
+    context 'ロールが管理者のとき' do
+      it 'nilを返す' do
+        r = Comic.get_author_from_roles([@admin])
+        r.should be_nil
+      end
+    end
+  end
+  
+  describe 'ロールリストからの絵師取得に於いて' do
+    context 'ロールがユーザのとき' do
+      it 'ユーザから作家を取得して、そこから絵師を取得できれば、それを返す' do
+        r = Comic.get_artist_from_roles([@user])
+        r.should eq @artist
+      end
+      it '作家から絵師を取得できないときnilを返す' do
+        @artist.author_id = nil
+        @artist.save!
+        r = Comic.get_artist_from_roles([@user])
+        r.should be_nil
+      end
+    end
+    context 'ロールが作家のとき' do
+      it 'そこから絵師を取得できれば、それを返す' do
+        r = Comic.get_artist_from_roles([@author])
+        r.should eq @artist
+      end
+      it '作家から絵師を取得できないときnilを返す' do
+        @artist.author_id = nil
+        @artist.save!
+        r = Comic.get_artist_from_roles([@author])
+        r.should be_nil
+      end
+    end
+    context 'ロールが絵師のとき' do
+      it 'それを返す' do
+        r = Comic.get_artist_from_roles([@artist])
+        r.should eq @artist
+      end
+    end
+    context 'ロールが管理者のとき' do
+      it 'nilを返す' do
+        r = Comic.get_artist_from_roles([@admin])
+        r.should be_nil
+      end
+    end
+  end
+  
   describe '所持判定に於いて' do
     before do
       @comic = FactoryGirl.build :comic, :author_id => @author.id
     end
-    it '自分のコミックならyes' do
-      @comic.own?(@author).should == true
+    context '事前チェックする' do
+      it '自身にロールリストからの作家取得を依頼している' do
+        Comic.should_receive(:get_author_from_roles).with(any_args).exactly(1)
+        r = @comic.own?([@author])
+      end
     end
-    it '他人のコミックならno' do
-      @comic.own?(@other_author).should == false
+    context 'ロール内作家が取得できるとき' do
+      before do
+      end
+      it 'ロール内作家のidが自身の作家idと一致するなら許可する' do
+        Comic.stub(:get_author_from_roles).with(any_args).and_return(@author)
+        r = @comic.own?([@author])
+        r.should be_true
+      end
+      it 'ロール内作家のidが自身の作家idと一致しないならno' do
+        Comic.stub(:get_author_from_roles).with(any_args).and_return(@other_author)
+        @comic.own?(@other_author).should be_false
+      end
     end
-    it 'パラメータが作家でないならno' do
-      @comic.own?(nil).should == false
+    context 'ロール内作家が取得できないとき' do
+      before do
+        Comic.stub(:get_author_from_roles).with(any_args).and_return(nil)
+      end
+      it 'Falseを返す' do
+        r = @comic.own?([@author])
+        r.should be_false
+      end
+    end
+  end
+  
+  describe '読者用ロールチェックに於いて' do
+    before do
+      @comic = FactoryGirl.build :comic, :author_id => @author.id
+    end
+    context 'ロールリストに作家が含まれるとき' do
+      it 'ロールリストがリストではないとき、リストにする trueを返す' do
+        r = @comic.reader_role_check(@author)
+        r.should be_true
+      end
+      it 'trueを返す' do
+        r = @comic.reader_role_check([@author])
+        r.should be_true
+      end
+    end
+    context 'ロールリストに絵師が含まれるとき' do
+      it 'trueを返す' do
+        r = @comic.reader_role_check([@artist])
+        r.should be_true
+      end
+    end
+    context 'ロールリストにユーザが含まれるとき' do
+      it 'trueを返す' do
+        r = @comic.reader_role_check([@user])
+        r.should be_true
+      end
+    end
+    context 'ロールリストに管理者が含まれるとき' do
+      it 'trueを返す' do
+        r = @comic.reader_role_check([@admin])
+        r.should be_true
+      end
+    end
+    context 'ロールリストにユーザ、管理者、作家、絵師が含まれないとき' do
+      it 'falseを返す' do
+        r = @comic.reader_role_check([nil])
+        r.should be_false
+      end
+    end
+  end
+  
+  describe '素材読者用ロールチェックに於いて' do
+    before do
+      @comic = FactoryGirl.build :comic, :author_id => @author.id
+    end
+    context 'ロールリストに作家が含まれるとき' do
+      it 'ロールリストがリストではないとき、リストにする trueを返す' do
+        r = @comic.resource_reader_role_check(@author)
+        r.should be_true
+      end
+      it 'trueを返す' do
+        r = @comic.resource_reader_role_check([@author])
+        r.should be_true
+      end
+    end
+    context 'ロールリストに絵師が含まれるとき' do
+      it 'trueを返す' do
+        r = @comic.resource_reader_role_check([@artist])
+        r.should be_true
+      end
+    end
+    context 'ロールリストにユーザが含まれるとき' do
+      it 'trueを返す' do
+        r = @comic.resource_reader_role_check([@user])
+        r.should be_true
+      end
+    end
+    context 'ロールリストに管理者が含まれるとき' do
+      it 'trueを返す' do
+        r = @comic.resource_reader_role_check([@admin])
+        r.should be_true
+      end
+    end
+    context 'ロールリストに借手が含まれるとき' do
+      it 'trueを返す' do
+        r = @comic.resource_reader_role_check([@demand_user])
+        r.should be_true
+      end
+    end
+    context 'ロールリストにユーザ、管理者、作家、絵師、借手が含まれないとき' do
+      it 'falseを返す' do
+        r = @comic.resource_reader_role_check([nil])
+        r.should be_false
+      end
     end
   end
   
@@ -95,56 +315,69 @@ describe Comic do
     before do
       @comic = FactoryGirl.build :comic, :author_id => @author.id
     end
-    context '検査対象がnil(ゲスト)のとき' do
-      context 'クローズドモードのとき' do
-        before do
-          MagicNumber['run_mode'] = 1
-        end
-        it '不許可を返す。' do
-          r = @comic.visible?(nil)
-          r.should be_false
-        end
-      end
-      context 'オープンモードのとき' do
-        before do
-          MagicNumber['run_mode'] = 0
-        end
-        it '公開コミックなら許可する' do
-          Comic.any_instance.stub(:visible).and_return(1)
-          r = @comic.visible?(nil)
-          r.should be_true
-        end
-        it '非公開コミックなら許可しない' do
-          Comic.any_instance.stub(:visible).and_return(0)
-          r = @comic.visible?(nil)
-          r.should be_false
-        end
-      end
-    end
-    context '検査対象が作家のとき' do
+    context 'オープンモードのとき' do
+      before do
+        MagicNumber['run_mode'] = 0
+      end
+      it '自身にゲスト用ロールチェックを問い合わせしている' do
+        Comic.any_instance.stub(:guest_role_check).and_return(true)
+        Comic.any_instance.should_receive(:guest_role_check).with(any_args).exactly(1)
+        r = @comic.visible?([@author])
+      end
+      it 'ゲスト用ロールチェックが失敗したとき、falseを返す' do
+        Comic.any_instance.stub(:guest_role_check).and_return(false)
+        r = @comic.visible?([@author])
+        r.should be_false
+      end
+    end
+    context 'クローズドモードのとき' do
+      before do
+        MagicNumber['run_mode'] = 1
+      end
+      it '自身に読者用ロールチェックを問い合わせしている' do
+        Comic.any_instance.stub(:reader_role_check).and_return(true)
+        Comic.any_instance.should_receive(:reader_role_check).with(any_args).exactly(1)
+        r = @comic.visible?([@author])
+      end
+      it '読者用ロールチェックが失敗したとき、falseを返す' do
+        Comic.any_instance.stub(:reader_role_check).and_return(false)
+        r = @comic.visible?([@author])
+        r.should be_false
+      end
+    end
+    context '事前チェックする' do
+      before do
+        MagicNumber['run_mode'] = 1
+        Comic.any_instance.stub(:reader_role_check).and_return(true)
+        Comic.any_instance.stub(:own?).and_return(true)
+      end
+      it '自身に所持判定を問い合わせしている' do
+        Comic.any_instance.should_receive(:own?).with(any_args).exactly(1)
+        r = @comic.visible?([@author])
+      end
+    end
+    context 'つつがなく終わるとき' do
+      before do
+        MagicNumber['run_mode'] = 1
+        Comic.any_instance.stub(:reader_role_check).and_return(true)
+      end
       it '自分のコミックなら許可する' do
         Comic.any_instance.stub(:own?).and_return(true)
         Comic.any_instance.stub(:visible).and_return(0)
-        r = @comic.visible?(@author)
-        r.should == true
+        r = @comic.visible?([@author])
+        r.should be_true
       end
       it '他人の非公開コミックなら許可しない' do
         Comic.any_instance.stub(:own?).and_return(false)
         Comic.any_instance.stub(:visible).and_return(0)
-        r = @comic.visible?(@author)
-        r.should == false
+        r = @comic.visible?([@author])
+        r.should be_false
       end
       it '他人のコミックでも公開なら許可する' do
         Comic.any_instance.stub(:own?).and_return(false)
         Comic.any_instance.stub(:visible).and_return(1)
-        r = @comic.visible?(@author)
-        r.should == true
-      end
-    end
-    context '検査対象がそれ以外のとき' do
-      it '不許可を返す。' do
-        r = @comic.visible?(@admin)
-        r.should be_false
+        r = @comic.visible?([@author])
+        r.should be_true
       end
     end
   end
@@ -226,71 +459,6 @@ describe Comic do
         c.should eq [@comic]
       end
     end
-    context 'DBに5件あって1ページの件数を2件に変えたとして' do
-      before do
-        @comic2 = FactoryGirl.create :comic, :author_id => @author.id, :updated_at => Time.now + 100
-        @comic3 = FactoryGirl.create :comic, :author_id => @author.id, :updated_at => Time.now + 200
-        @comic4 = FactoryGirl.create :comic, :author_id => @author.id, :updated_at => Time.now + 300
-        @comic5 = FactoryGirl.create :comic, :author_id => @author.id, :updated_at => Time.now + 400
-        Comic.stub(:default_page_size).and_return(2)
-      end
-      it '件数0は全件(5件)を返す' do
-        r = Comic.list 5, 0
-        r.should have(5).items 
-      end
-    end
-  end
-  describe '一覧取得オプションに於いて' do
-    it 'includeキーを含んでいる' do
-      r = Comic.list_opt
-      r.has_key?(:include).should be_true
-    end
-    it '2つの項目を含んでいる' do
-      r = Comic.list_opt[:include]
-      r.should have(2).items
-    end
-    it 'ストーリーを含んでいる' do
-      r = Comic.list_opt[:include]
-      r.has_key?(:stories).should be_true
-    end
-      it 'ストーリーはコマを含んでいる' do
-        r = Comic.list_opt[:include]
-        r[:stories].has_key?(:panel).should be_true
-      end
-    it '作家を含んでいる' do
-      r = Comic.list_opt[:include]
-      r.has_key?(:author).should be_true
-    end
-  end
-  describe 'json一覧出力オプションに於いて' do
-    before do
-      @op = FactoryGirl.create :original_picture, :artist_id => @artist.id
-      @p = FactoryGirl.create :picture, :original_picture_id => @op.id, :license_id => @license.id, :artist_id => @artist.id
-      @rp = FactoryGirl.create :resource_picture, :artist_id => @artist.id, :license_id => @license.id, :original_picture_id => @op.id, :picture_id => @p.id
-      @sbt = FactoryGirl.create :speech_balloon_template
-      @comic = FactoryGirl.create :comic, :author_id => @author.id, :visible => 1
-      @panel = FactoryGirl.create :panel, :author_id => @author.id, :publish => 1
-      @story = FactoryGirl.create :story, :author_id => @author.id, :comic_id => @comic.id, :panel_id => @panel.id
-    end
-    it 'ストーリーを含んでいる' do
-      r = Comic.list.to_json Comic.list_json_opt
-      j = JSON.parse r
-      i = j.first
-      i.has_key?('stories').should be_true
-    end
-      it 'ストーリーはコマを含んでいる' do
-        r = Comic.list.to_json Comic.list_json_opt
-        j = JSON.parse r
-        i = j.first
-        s = i['stories'].first
-        s.has_key?('panel').should be_true
-      end
-    it '作家を含んでいる' do
-      r = Comic.list.to_json Comic.list_json_opt
-      j = JSON.parse r
-      i = j.first
-      i.has_key?('author').should be_true
-    end
   end
   
   describe '自分のコミック一覧取得に於いて' do
@@ -348,18 +516,155 @@ describe Comic do
         c.should eq [@comic]
       end
     end
-    context 'DBに5件あって1ページの件数を0件に変えたとして' do
+  end
+  
+  describe '他作家のコミック一覧取得に於いて' do
+    before do
+      @comic = FactoryGirl.create :comic, :author_id => @author.id
+      @other_comic = FactoryGirl.create :comic, :author_id => @other_author.id, :visible => 1
+    end
+    context 'つつがなく終わるとき' do
+      it '一覧取得オプションを利用している' do
+        Comic.stub(:list_opt).with(any_args).and_return({})
+        Comic.should_receive(:list_opt).with(any_args).exactly(1)
+        r = Comic.himlist @other_author
+      end
+    end
+    it '指定した作家のリストを返す' do
+      r = Comic.himlist @other_author
+      r.should eq [@other_comic]
+    end
+    it '時系列で並んでいる' do
+      nc = FactoryGirl.create :comic, :author_id => @other_author.id, :updated_at => Time.now + 100
+      r = Comic.himlist @other_author
+      r.should eq [nc, @other_comic]
+    end
+    it '公開コミックに限る ' do
+      hidden = FactoryGirl.create :comic, :author_id => @other_author.id, :visible => 0
+      r = Comic.himlist @other_author
+      r.should eq [@other_comic]
+    end
+    context 'DBに5件あって1ページの件数を2件に変えたとして' do
       before do
-        @comic2 = FactoryGirl.create :comic, :author_id => @author.id, :updated_at => Time.now + 100
-        @comic3 = FactoryGirl.create :comic, :author_id => @author.id, :updated_at => Time.now + 200
-        @comic4 = FactoryGirl.create :comic, :author_id => @author.id, :updated_at => Time.now + 300
-        @comic5 = FactoryGirl.create :comic, :author_id => @author.id, :updated_at => Time.now + 400
-        Author.stub(:default_comic_page_size).and_return(2)
+        @other_comic2 = FactoryGirl.create :comic, :author_id => @other_author.id, :updated_at => Time.now + 100
+        @other_comic3 = FactoryGirl.create :comic, :author_id => @other_author.id, :updated_at => Time.now + 200
+        @other_comic4 = FactoryGirl.create :comic, :author_id => @other_author.id, :updated_at => Time.now + 300
+        @other_comic5 = FactoryGirl.create :comic, :author_id => @other_author.id, :updated_at => Time.now + 400
+      end
+      it '通常は2件を返す' do
+        c = Comic.himlist @other_author, 1, 2
+        c.should have(2).items 
       end
-      it '通常は全件(5件)を返す' do
-        r = Comic.mylist @author, 5, 0
-        r.should have(5).items 
+      it 'page=1なら末尾2件を返す' do
+        #時系列で並んでいる
+        c = Comic.himlist(@other_author, 1, 2)
+        c.should eq [@other_comic5, @other_comic4]
       end
+      it 'page=2なら中間2件を返す' do
+        c = Comic.himlist(@other_author, 2, 2)
+        c.should eq [@other_comic3, @other_comic2]
+      end
+      it 'page=3なら先頭1件を返す' do
+        c = Comic.himlist(@other_author, 3, 2)
+        c.should eq [@other_comic]
+      end
+    end
+  end
+  
+  describe 'コミック一覧ページ制御に於いて' do
+    before do
+      Comic.stub(:count).with(any_args).and_return(100)
+    end
+    it 'ページ制御を返す' do
+      r = Comic.list_paginate 
+      r.is_a?(Kaminari::PaginatableArray).should be_true
+    end
+    it 'コミック一覧の取得条件を利用している' do
+      Comic.stub(:list_where).with(any_args).and_return('')
+      Comic.should_receive(:list_where).with(any_args).exactly(1)
+      r = Comic.list_paginate 
+    end
+    it 'ページ件数10のとき、3ページ目のオフセットは20から始まる' do
+      r = Comic.list_paginate 3, 10
+      r.limit_value.should eq 10
+      r.offset_value.should eq 20
+    end
+  end
+  
+  describe '自分のコミック一覧ページ制御に於いて' do
+    before do
+      Comic.stub(:count).with(any_args).and_return(100)
+    end
+    it 'ページ制御を返す' do
+      r = Comic.mylist_paginate @author
+      r.is_a?(Kaminari::PaginatableArray).should be_true
+    end
+    it '自分のコミック一覧の取得条件を利用している' do
+      Comic.stub(:mylist_where).with(any_args).and_return('')
+      Comic.should_receive(:mylist_where).with(any_args).exactly(1)
+      r = Comic.mylist_paginate @author
+    end
+    it 'ページ件数10のとき、3ページ目のオフセットは20から始まる' do
+      r = Comic.mylist_paginate @author, 3, 10
+      r.limit_value.should eq 10
+      r.offset_value.should eq 20
+    end
+  end
+  
+  describe '他作家のコミック一覧ページ制御に於いて' do
+    before do
+      Comic.stub(:count).with(any_args).and_return(100)
+    end
+    it 'ページ制御を返す' do
+      r = Comic.himlist_paginate @other_author
+      r.is_a?(Kaminari::PaginatableArray).should be_true
+    end
+    it '他作家のコミック一覧の取得条件を利用している' do
+      Comic.stub(:himlist_where).with(any_args).and_return('')
+      Comic.should_receive(:himlist_where).with(any_args).exactly(1)
+      r = Comic.himlist_paginate @other_author
+    end
+    it 'ページ件数10のとき、3ページ目のオフセットは20から始まる' do
+      r = Comic.himlist_paginate @other_author, 3, 10
+      r.limit_value.should eq 10
+      r.offset_value.should eq 20
+    end
+  end
+  
+  describe '一覧取得オプションに於いて' do
+    it '2つの項目を含んでいる' do
+      r = Comic.list_opt
+      r.should have(2).items
+    end
+    it 'ストーリーを含んでいる' do
+      r = Comic.list_opt
+      r.has_key?(:stories).should be_true
+    end
+    it '作家を含んでいる' do
+      r = Comic.list_opt
+      r.has_key?(:author).should be_true
+    end
+  end
+  describe 'json一覧出力オプションに於いて' do
+    before do
+      @op = FactoryGirl.create :original_picture, :artist_id => @artist.id
+      @p = FactoryGirl.create :picture, :original_picture_id => @op.id, :license_id => @license.id, :artist_id => @artist.id
+      @rp = FactoryGirl.create :resource_picture, :artist_id => @artist.id, :license_id => @license.id, :original_picture_id => @op.id, :picture_id => @p.id
+      @sbt = FactoryGirl.create :speech_balloon_template
+      @comic = FactoryGirl.create :comic, :author_id => @author.id, :visible => 1
+      @story = FactoryGirl.create :story, :comic_id => @comic.id
+    end
+    it 'ストーリーを含んでいる' do
+      r = Comic.list.to_json Comic.list_json_opt
+      j = JSON.parse r
+      i = j.first
+      i.has_key?('stories').should be_true
+    end
+    it '作家を含んでいる' do
+      r = Comic.list.to_json Comic.list_json_opt
+      j = JSON.parse r
+      i = j.first
+      i.has_key?('author').should be_true
     end
   end
   
@@ -454,10 +759,6 @@ describe Comic do
       r = Comic.show_opt[:include]
       r.has_key?(:stories).should be_true
     end
-      it 'ストーリーはコマを含んでいる' do
-        r = Comic.show_opt[:include]
-        r[:stories].has_key?(:panel).should be_true
-      end
   end
   describe 'json単体出力オプションに於いて' do
     before do
@@ -466,8 +767,7 @@ describe Comic do
       @rp = FactoryGirl.create :resource_picture, :artist_id => @artist.id, :license_id => @license.id, :original_picture_id => @op.id, :picture_id => @p.id
       @sbt = FactoryGirl.create :speech_balloon_template
       @comic = FactoryGirl.create :comic, :author_id => @author.id, :visible => 1
-      @panel = FactoryGirl.create :panel, :author_id => @author.id, :publish => 1
-      @story = FactoryGirl.create :story, :author_id => @author.id, :comic_id => @comic.id, :panel_id => @panel.id
+      @story = FactoryGirl.create :story, :comic_id => @comic.id
     end
     it 'ストーリーを含んでいる' do
       r = Comic.show(@comic.id, @author).to_json Comic.show_json_opt
@@ -475,13 +775,6 @@ describe Comic do
       i = j
       i.has_key?('stories').should be_true
     end
-      it 'ストーリーはコマを含んでいる' do
-        r = Comic.show(@comic.id, @author).to_json Comic.show_json_opt
-        j = JSON.parse r
-        i = j
-        s = i['stories'].first
-        s.has_key?('panel').should be_true
-      end
     it '作家を含んでいる' do
       r = Comic.show(@comic.id, @author).to_json Comic.show_json_opt
       j = JSON.parse r
@@ -493,10 +786,9 @@ describe Comic do
   describe '削除に於いて' do
     before do
       @comic = FactoryGirl.create :comic, :author_id => @author.id
-      @panel = FactoryGirl.create :panel, :author_id => @author.id, :publish => 1
-      @story = FactoryGirl.create :story, :author_id => @author.id, :comic_id => @comic.id, :panel_id => @panel.id
+      @story = FactoryGirl.create :story, :comic_id => @comic.id
       @other_comic = FactoryGirl.create :comic, :author_id => @author.id
-      @other_story = FactoryGirl.create :story, :author_id => @author.id, :comic_id => @other_comic.id, :panel_id => @panel.id
+      @other_story = FactoryGirl.create :story, :comic_id => @other_comic.id
     end
     context 'つつがなく終わるとき' do
       it '自身を削除する' do