metamaps--metamaps/spec/views/synapses/show.html.erb_spec.rb

12 lines
208 B
Ruby
Raw Normal View History

require 'rails_helper'
RSpec.describe "synapses/show", :type => :view do
before(:each) do
@synapse = assign(:synapse, Synapse.create!())
end
it "renders attributes in <p>" do
render
end
end