fix: rubocop violations controller tests
This commit is contained in:
parent
d3d7acc7ce
commit
1a2b23ec88
1 changed files with 3 additions and 2 deletions
|
|
@ -7,7 +7,7 @@ describe ArticlesController, type: :controller do
|
||||||
let(:article_category_a) { create :article_category, name: "AAAA" }
|
let(:article_category_a) { create :article_category, name: "AAAA" }
|
||||||
let(:article_category_b) { create :article_category, name: "BBBB" }
|
let(:article_category_b) { create :article_category, name: "BBBB" }
|
||||||
let(:article_category_c) { create :article_category, name: "CCCC" }
|
let(:article_category_c) { create :article_category, name: "CCCC" }
|
||||||
let(:supplier) { create :supplier}
|
let(:supplier) { create :supplier }
|
||||||
let(:article_a) { create :article, name: 'AAAA', note: "ZZZZ", unit: '750 g', article_category: article_category_b, availability: false, supplier_id: supplier.id }
|
let(:article_a) { create :article, name: 'AAAA', note: "ZZZZ", unit: '750 g', article_category: article_category_b, availability: false, supplier_id: supplier.id }
|
||||||
let(:article_b) { create :article, name: 'BBBB', note: "XXXX", unit: '500 g', article_category: article_category_a, availability: true, supplier_id: supplier.id }
|
let(:article_b) { create :article, name: 'BBBB', note: "XXXX", unit: '500 g', article_category: article_category_a, availability: true, supplier_id: supplier.id }
|
||||||
let(:article_c) { create :article, name: 'CCCC', note: "YYYY", unit: '250 g', article_category: article_category_c, availability: true, supplier_id: supplier.id }
|
let(:article_c) { create :article, name: 'CCCC', note: "YYYY", unit: '250 g', article_category: article_category_c, availability: true, supplier_id: supplier.id }
|
||||||
|
|
@ -36,6 +36,7 @@ describe ArticlesController, type: :controller do
|
||||||
article_c
|
article_c
|
||||||
supplier.reload
|
supplier.reload
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'assigns sorting on articles' do
|
it 'assigns sorting on articles' do
|
||||||
sortings = [
|
sortings = [
|
||||||
['name', [article_a, article_b, article_c]],
|
['name', [article_a, article_b, article_c]],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue