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

15 lines
253 B
Ruby
Executable File

require 'rails_helper'
RSpec.describe "origami/in_juties/index", type: :view do
before(:each) do
assign(:in_juties, [
InJuty.create!(),
InJuty.create!()
])
end
it "renders a list of origami/in_juties" do
render
end
end