質問編集履歴

2

2021/06/29 20:07

投稿

remkn
remkn

スコア1

test CHANGED
File without changes
test CHANGED
@@ -48,7 +48,7 @@
48
48
 
49
49
  ```Ruby
50
50
 
51
- class Idea < ApplicationRecord
51
+ class Item < ApplicationRecord
52
52
 
53
53
  belongs_to :category
54
54
 

1

rspecのテストコードを加えました

2021/06/29 20:07

投稿

remkn
remkn

スコア1

test CHANGED
File without changes
test CHANGED
@@ -72,6 +72,74 @@
72
72
 
73
73
 
74
74
 
75
+ ```Ruby
76
+
77
+ require 'rails_helper'
78
+
79
+
80
+
81
+ RSpec.describe Item, type: :model do
82
+
83
+ describe '#create' do
84
+
85
+ before do
86
+
87
+
88
+
89
+ @item = FactoryBot.build(:item)
90
+
91
+ end
92
+
93
+
94
+
95
+ context '登録できる場合' do
96
+
97
+ it '全ての項目が存在していれば登録できること' do
98
+
99
+ expect(@item).to be_valid
100
+
101
+ end
102
+
103
+ end
104
+
105
+
106
+
107
+ context '登録できない場合' do
108
+
109
+ it 'bodyが空だと登録できない' do
110
+
111
+ @item.body = nil
112
+
113
+ @item.valid?
114
+
115
+ expect(@item.errors[:body]).to include("can't be blank")
116
+
117
+ end
118
+
119
+
120
+
121
+ it 'category_idが空だと登録できない' do
122
+
123
+ @item.category_id = nil
124
+
125
+ @item.valid?
126
+
127
+ expect(@item.errors[:category_id]).to include("can't be blank")
128
+
129
+ end
130
+
131
+ end
132
+
133
+ end
134
+
135
+ end
136
+
137
+
138
+
139
+ ```
140
+
141
+
142
+
75
143
  ### 試したこと
76
144
 
77
145
  rspec-railsのバージョンを5.0.1から4.0.2へダウングレードしましたが、事象変わらずです。