Files
sx-fc/spec/views/stock_check_items/edit.html.erb_spec.rb
2017-10-23 11:38:10 +06:30

15 lines
359 B
Ruby
Executable File

require 'rails_helper'
RSpec.describe "stock_check_items/edit", type: :view do
before(:each) do
@stock_check_item = assign(:stock_check_item, StockCheckItem.create!())
end
it "renders the edit stock_check_item form" do
render
assert_select "form[action=?][method=?]", stock_check_item_path(@stock_check_item), "post" do
end
end
end