15 lines
293 B
Ruby
Executable File
15 lines
293 B
Ruby
Executable File
require 'rails_helper'
|
|
|
|
RSpec.describe "origami/in_juties/new", type: :view do
|
|
before(:each) do
|
|
assign(:origami_in_juty, InJuty.new())
|
|
end
|
|
|
|
it "renders new origami_in_juty form" do
|
|
render
|
|
|
|
assert_select "form[action=?][method=?]", in_juties_path, "post" do
|
|
end
|
|
end
|
|
end
|