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

15 lines
339 B
Ruby
Executable File

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