OSDN Git Service

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