X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=spec%2Funit%2Frpc_spec.rb;fp=spec%2Funit%2Frpc_spec.rb;h=0000000000000000000000000000000000000000;hb=d1f1649ba43c5cbc43c4beb2380096ba051d646a;hp=2ec96d23ab80ae18eb3e9432610c56a58aebcc69;hpb=8a3fe7daeecccf43dd71c59371c5005400d35101;p=packages%2Fprecise%2Fmcollective.git diff --git a/spec/unit/rpc_spec.rb b/spec/unit/rpc_spec.rb deleted file mode 100755 index 2ec96d2..0000000 --- a/spec/unit/rpc_spec.rb +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env rspec - -require 'spec_helper' - -module MCollective - describe RPC do - describe "#const_missing" do - it "should deprecate only the DDL class" do - Log.expects(:warn).with("MCollective::RPC::DDL is deprecatd, please use MCollective::DDL instead") - MCollective::RPC::DDL.should == MCollective::DDL - - expect { MCollective::RPC::Foo }.to raise_error(NameError) - end - end - end -end