OSDN Git Service

Merge branch 'v03_test' of git.sourceforge.jp:/gitroot/pettanr/pettanr into v03_test
[pettanr/pettanr.git] / spec / controllers / balloons_controller_spec.rb
1 # -*- encoding: utf-8 -*-
2 #フキダシ枠
3 require 'spec_helper'
4
5 describe BalloonsController do
6   describe "GET index" do
7     it "assigns all baloons as @baloons" do
8       baloon = Baloon.create! valid_attributes
9       get :index
10       assigns(:baloons).should eq([baloon])
11     end
12   end
13 end