OSDN Git Service

2d07acc9d96775d05416b858118e59ce128c8788
[pettanr/pettanr.git] / spec / controllers / speaches_controller_spec.rb
1 # -*- encoding: utf-8 -*-
2 #セリフ
3 require 'spec_helper'
4
5 describe SpeachesController do
6
7   describe "GET index" do
8     it "assigns all speaches as @speaches" do
9       speach = Speach.create! valid_attributes
10       get :index
11       assigns(:speaches).should eq([speach])
12     end
13   end
14 end