require File.dirname(__FILE__) + '/../spec_helper' describe SongsController do it 'should allow to skip a required power check' do expect { get :show, :id => '1' }.to_not raise_error end it "should raise an error if an action is not checked against a power" do expect { put :update, :id => '1' }.to raise_error(Consul::UncheckedPower) end end