summaryrefslogtreecommitdiffstats
path: root/spec/shared_behaviours/an_indirector_face.rb
blob: cba74b696c07d61965bd7897f1784739ca042e12 (plain)
1
2
3
4
5
6
shared_examples_for "an indirector face" do
  [:find, :search, :save, :destroy, :info].each do |action|
    it { should be_action action }
    it { should respond_to action }
  end
end