OSDN Git Service

add test
[pettanr/pettanr.git] / spec / views / artists / index.html.erb_spec.rb
1 require 'spec_helper'
2
3 describe "artists/index.html.erb" do
4   before(:each) do
5     assign(:artists, [
6       stub_model(Artist),
7       stub_model(Artist)
8     ])
9   end
10
11   it "renders a list of artists" do
12     render
13   end
14 end