Files
sx-fc/spec/views/origami/in_juties/index.html.erb_spec.rb
Zin Lin Phyo 874a9b60be create InJuty
2017-08-23 15:02:27 +06:30

15 lines
253 B
Ruby

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