контроллер при rspec ?
def index
@products = @city.products
end
...
RSpec.feature 'Basic tests', type: :feature do
let!(:city) { build :city }
describe '#index' do
it 'Index path exist' do
visit root_path
expect(page.status_code).to eq(200)
end
end
NoMethodError:
undefined method `products' for nil:NilClass
Как так? Я же сбилдил город
а билд = создание?
Обсуждают сегодня