OSDN Git Service

db5a09d6e00530c9b7d86f376406d0df663a9f81
[pettanr/pettanr.git] / spec / controllers / speech_balloons_controller_spec.rb
1 # -*- encoding: utf-8 -*-
2 #フキダシ
3 require 'spec_helper'
4 describe SpeechBalloonsController do
5   describe "GET index" do
6     it "assigns all speech_baloons as @speech_baloons" do
7       speech_baloon = SpeechBaloon.create! valid_attributes
8       get :index
9       assigns(:speech_baloons).should eq([speech_baloon])
10     end
11   end
12 end